name: nginx-gateway services: nginx-gateway: image: nginx:1.25-alpine container_name: nginx-gateway restart: always ports: - "80:80" - "443:443" volumes: - ./nginx.conf:/etc/nginx/nginx.conf:ro - ./conf.d:/etc/nginx/conf.d:ro - ./ssl:/etc/nginx/ssl:ro - ./dist:/usr/share/nginx/html:ro - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro networks: - coze-network - kong-net networks: coze-network: external: true kong-net: external: name: kong-ai-gateway-prod_kong-net