excalidraw/docker-compose.yml
2024-12-27 18:16:21 +03:00

32 lines
667 B
YAML

version: "3.8"
services:
excalidraw:
build:
context: .
args:
- NODE_ENV=development
container_name: excalidraw
ports:
- "3302:80"
restart: on-failure
stdin_open: true
healthcheck:
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:
image: excalidraw/excalidraw-room:latest
ports:
- '8802:80'
volumes:
notused: