MindBuzz Deployment

One app container, persistent folders.

The default Compose file uses the published Docker image and bind mounts config plus media.

Docker image

The published image is kriziw/mindbuzz:latest.

docker run -d \
  -p 3000:3000 \
  -v ./config:/app/config \
  -v ./media:/app/media \
  kriziw/mindbuzz:latest

Persistent data

  • ./config:/app/config stores the SQLite application database and file-backed auth settings.
  • ./media:/app/media stores manager-uploaded local audio files.

Upgrade habit

Back up config/ and media/, pull the new image tag, then restart the container. Existing installs are migrated automatically on first startup after an upgrade.