aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..b82053e
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,25 @@
+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
+ - ./yarn.lock:/opt/node_app/yarn.lock
+ - notused:/opt/node_app/app/node_modules
+
+volumes:
+ notused: