# Excalidraw ## compose.yml ```yaml services: excalidraw: image: excalidraw/excalidraw:latest container_name: excalidraw ports: - "8092:80" restart: unless-stopped healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://localhost"] interval: 30s timeout: 10s retries: 3 ```
