You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
529 B
25 lines
529 B
version: "3.8" |
|
|
|
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 |
|
- ./package-lock.json:/opt/node_app/package-lock.json |
|
- notused:/opt/node_app/app/node_modules |
|
|
|
volumes: |
|
notused:
|
|
|