excalidraw/docker-compose.yml
Felipe Veas 13c742d970
chore: remove deprecated docker-compose version field
Docker Compose V2+ no longer requires the version field
2025-01-24 22:49:39 -03:00

23 lines
497 B
YAML

services:
excalidraw:
build:
context: .
args:
- NODE_ENV=development
container_name: excalidraw
ports:
- "3000:80"
restart: on-failure
stdin_open: true
healthcheck:
disable: true
environment:
- NODE_ENV=development
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
volumes:
notused: