Braindump is for moments when your head feels noisy and you need clarity fast. Write one thought at a time, keep your flow, and turn mental clutter into something you can move forward with. No pressure to organize, just get it out.
Braindump is served as a static site over Caddy and listens on port 8080 in the container.
Run the prebuilt image:
docker run -d \
--name braindump \
--restart unless-stopped \
-p 8080:8080 \
ghcr.io/remvze/braindumpThen open http://localhost:8080.
Build and run locally from source:
docker build -t braindump:local .
docker run -d --name braindump -p 8080:8080 braindump:localThis repository already includes a docker-compose.yml:
services:
braindump:
image: ghcr.io/remvze/braindump
restart: always
ports:
- "8080:8080"Start it:
docker compose up -dStop it:
docker compose downThen open http://localhost:8080.