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.
 
 
 
 

35 lines
692 B

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