555
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
716 B

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