services:
  web:
    image: nginx:stable-alpine
    # command: nginx -g 'daemon off;'
    volumes:
      - ./conf.d:/etc/nginx/conf.d
      - ./sites:/sites/
      - ./ssl:/ssl/
    ports:
      - "80:80"
      - "443:443"
    environment:
      - NGINX_HOST=0.0.0.0
      - NGINX_PORT=80
