summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--excalidraw/data/.gitkeep0
-rw-r--r--excalidraw/docker-compose.yaml16
2 files changed, 16 insertions, 0 deletions
diff --git a/excalidraw/data/.gitkeep b/excalidraw/data/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/excalidraw/data/.gitkeep
diff --git a/excalidraw/docker-compose.yaml b/excalidraw/docker-compose.yaml
new file mode 100644
index 0000000..f98ce8c
--- /dev/null
+++ b/excalidraw/docker-compose.yaml
@@ -0,0 +1,16 @@
+version: "3.8"
+
+services:
+ excalidraw:
+ image: dejavumoe/excalidraw:master
+ container_name: excalidraw
+ ports:
+ - "127.0.0.1:8808:80"
+ restart: always
+ stdin_open: true
+ healthcheck:
+ disable: true
+ environment:
+ - NODE_ENV=production
+ volumes:
+ - ./data:/app/web \ No newline at end of file