complete all stack READMEs to the 9-section template

Existing content preserved and reordered to the canonical section order;
missing sections generated from each stack's compose data (ports, volumes,
env vars, image links). Fixes copy-paste errors in Dockhand sections
(qbittorrent pointed at archivebox; invokeai/thunderbird said SERVICENAME)
and persistant->persistent typos in gatus.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
code
2026-07-16 06:25:05 +00:00
co-authored by Claude Fable 5
parent 8ab413804a
commit 340866f9f4
48 changed files with 2024 additions and 140 deletions
+21 -2
View File
@@ -14,6 +14,12 @@ initialization/upgrades, and support for reverse proxy integration.
- **Documentation:** https://listmonk.app/docs/
- **Reverse Proxy Port:** `9000` (configurable with `LISTMONK_PORT`)
## Getting Started
1. Start the container: `docker compose up -d`
2. Open http://localhost:9000 in your browser
3. Follow the initial setup wizard to configure the application
## Environment Variable Notes
Most variables are optional because sane defaults are already included
@@ -52,7 +58,7 @@ These are only used during first startup.
## Volume Notes
/data/listmonk/db
/data/listmonk/db
PostgreSQL database storage
/data/listmonk/uploads
@@ -78,6 +84,19 @@ Internal application traffic uses the private:
bridge network.
## Docker Run
```bash
docker run -d \
--name listmonk \
-p 9000:9000 \
-v /data/listmonk/db:/var/lib/postgresql \
-v /data/listmonk/uploads:/listmonk/uploads:rw \
listmonk/listmonk:latest
```
See compose.yaml for the full set of environment variables.
## Additional Notes / Gotchas
- The stack automatically runs:
@@ -109,4 +128,4 @@ Then load:
into the Environmental Variables section in Dockhand.
Create the Stack.
Create the Stack.