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