aac81d6f298c907cbaaa0212a2839b67ad35c9d3
All checks were successful
Release / Test backend (push) Successful in 1m3s
Release / Test UI (push) Successful in 1m50s
Release / Build and push images (push) Successful in 7m32s
Release / Deploy to homelab (push) Successful in 16s
Release / Gitea Release (push) Successful in 27s
Release / Deploy to prod (push) Successful in 2m21s
Issue: Two sequential 'docker compose up' commands caused race condition: - First command (--no-deps) starts removing containers - Second command (--remove-orphans) tries to remove same containers - Result: 'removal of container is already in progress' error Fix: Combine into single command with both flags: docker compose up -d --no-deps --remove-orphans <services> This ensures atomic operation without race conditions.
LibNovel
Self-hosted audiobook platform. Go backend + SvelteKit UI + MinIO/PocketBase/Meilisearch.
Requirements
- Docker + Docker Compose
- just
- Doppler CLI
Setup
doppler login
doppler setup # project=libnovel, config=prd
Usage
just up # start everything
just down # stop
just logs # tail all logs
just log backend # tail one service
just build # rebuild images
just restart # down + up
just secrets # view/edit secrets
Secrets
Managed via Doppler (project=libnovel, config=prd). No .env files.
To add or update a secret:
doppler secrets set MY_SECRET=value
Description