docker-compose.yml 239 B

12345678910111213
  1. web:
  2. image: nginx
  3. container_name: nginx
  4. volumes:
  5. - ./conf:/etc/nginx
  6. - ./html:/usr/share/nginx/html
  7. ports:
  8. - "80:80"
  9. - "443:443"
  10. restart: unless-stopped
  11. environment:
  12. - NGINX_HOST=nav.home.base
  13. - NGINX_PORT=80