version: '3.5' services: #Nginx Service daisu-nginx: image: nginx:alpine container_name: daisu-nginx restart: unless-stopped tty: true ports: - "19992:80" - "19923:443" volumes: - ./:/var/www - ./nginx/conf.d:/etc/nginx/conf.d # - ./certbot/www:/var/www/certbot/:ro # - ./certbot/conf/:/etc/nginx/ssl/:ro networks: - app-network #Node Service daisu-node-web: image: node:16 container_name: daisu-node-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