version: '3.5' services: #Nginx Service report-se-web-nginx: image: nginx:alpine container_name: report-se-web-nginx restart: unless-stopped tty: true ports: - "19919:80" - "19915:443" volumes: - ./:/var/www - ./nginx/conf.d:/etc/nginx/conf.d networks: - app-network #Node Service report-se-web: image: node:16 container_name: report-se-web build: context: . dockerfile: ./Dockerfile restart: unless-stopped tty: true working_dir: /var/www volumes: - ./:/var/www networks: - app-network #Docker Networks networks: app-network: name: gk.internal external: true