Skip to content
Snippets Groups Projects
docker-compose.local.yml 389 B
Newer Older
  • Learn to ignore specific revisions
  • Guilhem CARRON's avatar
    Guilhem CARRON committed
    version: '3.7'
    services:
    
        image: nginxinc/nginx-unprivileged:1.25
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
          - ./nginx/nginx.conf:/etc/nginx/nginx.conf
    
    Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
          - ./nginx/site.local.conf:/etc/nginx/conf.d/default.conf
    
          - ./cert.pem:/etc/nginx/cert.pem
          - ./key.pem:/etc/nginx/key.pem
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
        ports:
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
          - 443:443
    
        extra_hosts:
          - 'host.docker.internal:host-gateway'