A simple markdown notes webapp with real-time multi-client sync via WebSockets. Built with Bun, Svelte 5, and SQLite.
docker run -p 3000:3000 -v scratch-data:/data garretpremo/scratch:latest
Then visit http://localhost:3000
services:
scratch:
image: garretpremo/scratch:latest
ports:
- "3000:3000"
environment:
- DB_PATH=/data/scratch.db
volumes:
- scratch-data:/data
volumes:
scratch-data:
| Variable | Default | Description |
|---|---|---|
PORT | 3000 | Server port |
DB_PATH | ./data/scratch.db | SQLite database path |
Content type
Image
Digest
sha256:28adcef37…
Size
89.8 MB
Last updated
6 months ago
docker pull garretpremo/scratch