You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
768 B

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