1
0
mirror of https://github.com/robonen/canvas-3d.git synced 2026-03-19 18:34:40 +00:00
Files
canvas-3d/docker-compose.yaml

34 lines
571 B
YAML

services:
proxy_lb:
container_name: proxy_lb
image: nginx:latest
ports:
- '${PROXY_PORT:-80}:80'
- '${PROXY_PORT_SSL:-443}:443'
volumes:
- './config/nginx/proxy_lb.conf:/etc/nginx/conf.d/default.conf'
networks:
- c3d_net
depends_on:
- app
app:
build:
context: .
dockerfile: Dockerfile
deploy:
mode: replicated
replicas: 2
expose:
- '${FORWARD_APP_PORT:-3000}'
networks:
- c3d_net
volumes:
c3d_vol:
driver: local
networks:
c3d_net:
driver: bridge