Commit 7f9170
2025-05-26 20:48:00 MB Tech: -/-/dev/null .. docker compose files/excalidraw.md | |
@@ 0,0 1,17 @@ | |
+ | # Excalidraw |
+ | |
+ | ## Docker Compose Configuration for Excalidraw |
+ | |
+ | This Docker Compose setup deploys Excalidraw in a Docker container, offering an isolated environment for your sketching and collaboration needs. |
+ | |
+ | ### Docker Compose File (`docker-compose.yml`) |
+ | |
+ | ```yaml |
+ | services: |
+ | excalidraw: |
+ | container_name: excalidraw |
+ | image: excalidraw/excalidraw:latest |
+ | ports: |
+ | - "8888:80" |
+ | restart: on-failure |
+ | ``` |