Skip to content

remvze/braindump

Repository files navigation

Braindump

Brain dump. Nothing more.

Visit Braindump | Buy Me a Coffee

Repo Views

What is Braindump?

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.

Self-hosting

Braindump is served as a static site over Caddy and listens on port 8080 in the container.

Option 1: Docker

Run the prebuilt image:

docker run -d \
  --name braindump \
  --restart unless-stopped \
  -p 8080:8080 \
  ghcr.io/remvze/braindump

Then open http://localhost:8080.

Build and run locally from source:

docker build -t braindump:local .
docker run -d --name braindump -p 8080:8080 braindump:local

Option 2: Docker Compose

This repository already includes a docker-compose.yml:

services:
  braindump:
    image: ghcr.io/remvze/braindump
    restart: always
    ports:
      - "8080:8080"

Start it:

docker compose up -d

Stop it:

docker compose down

Then open http://localhost:8080.

About

🧠 Brain dump. Nothing more.

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors