2026-05-26 20:03:13 +00:00
2026-05-24 15:32:36 +00:00
2026-05-24 18:53:24 +00:00
2026-05-24 18:36:09 +00:00
2026-05-24 15:32:36 +00:00
2026-05-24 15:32:36 +00:00
2026-05-24 15:32:36 +00:00

excali

Private self-hosted Excalidraw with Bun and SQLite.

Run locally

bun install
bun run dev

Open http://localhost:3000.

Test

bun run test
bun run typecheck

Build the image

docker build -t excali .
docker run --rm -p 3000:3000 -v "$PWD/excali-box-data:/data" excali

This will make the data persistent in the excali-box-data folder in the current directory, the site will be available at localhost:3000.

By default, this image binds to localhost. To expose it on all interfaces, set HOST=0.0.0.0:

docker run --rm -p 3000:3000 -v "$PWD/excali-box-data:/data" -e HOST=0.0.0.0 excali