From cd5d43b67194aa19ba68b437a6d149d8f2f36628 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 2 Nov 2025 14:45:05 +0100 Subject: [PATCH] =?UTF-8?q?excalidraw/docker-compose.yml=20hinzugef=C3=BCg?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- excalidraw/docker-compose.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 excalidraw/docker-compose.yml diff --git a/excalidraw/docker-compose.yml b/excalidraw/docker-compose.yml new file mode 100644 index 0000000..18f9850 --- /dev/null +++ b/excalidraw/docker-compose.yml @@ -0,0 +1,12 @@ +services: + excalidraw: + container_name: excalidraw + healthcheck: + test: curl -f http://localhost:80/ || exit 1 + image: excalidraw/excalidraw:latest + ports: + - 3765:80 + restart: on-failure:5 + stdin_open: true + environment: + - NODE_ENV=production \ No newline at end of file