1
0
mirror of https://github.com/robonen/canvas-3d.git synced 2026-03-20 02:44:40 +00:00

refactor(app): update deps, decomposition, formatting

This commit is contained in:
2024-05-26 03:26:35 +07:00
parent 314382e7ba
commit 0e2a71b7a8
37 changed files with 10865 additions and 14254 deletions

33
docker-compose.yaml Normal file
View File

@@ -0,0 +1,33 @@
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