Blame

2a832f mb tech 2026-01-25 02:37:19
added
1
# Excalidraw
2
43d4f8 mb tech 2026-01-25 02:37:57
updated
3
## compose.yml
2a832f mb tech 2026-01-25 02:37:19
added
4
```yaml
5
services:
6
excalidraw:
7
image: excalidraw/excalidraw:latest
8
container_name: excalidraw
9
ports:
10
- "8092:80"
11
restart: unless-stopped
12
healthcheck:
13
test: ["CMD", "wget", "--spider", "-q", "http://localhost"]
14
interval: 30s
15
timeout: 10s
16
retries: 3
17
```