Update docker-compose configuration for production environment

This commit is contained in:
NikitolProject 2024-12-27 18:34:48 +03:00
parent da7d6e8e71
commit 6977d96f27

View File

@ -5,7 +5,7 @@ services:
build: build:
context: . context: .
args: args:
- NODE_ENV=development - NODE_ENV=production
container_name: excalidraw container_name: excalidraw
ports: ports:
- "3302:80" - "3302:80"
@ -13,19 +13,8 @@ services:
stdin_open: true stdin_open: true
healthcheck: healthcheck:
disable: true disable: true
environment:
- NODE_ENV=development
- VITE_APP_WS_SERVER_URL=https://ed-room.bebragg.ru
volumes:
- ./:/opt/node_app/app:delegated
- ./package.json:/opt/node_app/package.json
- ./yarn.lock:/opt/node_app/yarn.lock
- notused:/opt/node_app/app/node_modules
excalidraw-room: excalidraw-room:
image: excalidraw/excalidraw-room:latest image: excalidraw/excalidraw-room:latest
ports: ports:
- '8802:80' - '3002:80'
volumes:
notused: