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
+63
View File
@@ -11,3 +11,66 @@ docker compose exec peertube npm run reset-password -- -u root
```
NOTICE: I've added this one for testing, it didn't fit what I was wanting, but I'll levae it here as it did boot.
## Overview
Federated, peer-to-peer video hosting platform.
## Project Details
- **Container Image:** [chocobozzz/peertube:production-bookworm](https://hub.docker.com/r/chocobozzz/peertube)
- **Reverse Proxy Port:** `9000`
## 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
PEERTUBE_HOSTNAME default: localhost
PEERTUBE_ADMIN_EMAIL default: admin@example.com
PEERTUBE_ADMIN_PASSWORD default: ChangeThisPassword
PEERTUBE_PORT default: 9000
## Volume Notes
/var/lib/postgresql/data host path /data/peertube/postgres
/data host path /data/peertube/redis
/data host path /data/peertube/data
/config host path /data/peertube/config
## Network Notes
Requires proxy network
## Docker Run
```bash
docker run -d \
--name peertube \
-p 9000:9000 \
-v /data/peertube/postgres:/var/lib/postgresql/data \
-v /data/peertube/redis:/data \
-v /data/peertube/data:/data \
-v /data/peertube/config:/config \
chocobozzz/peertube:production-bookworm
```
See compose.yaml for the full set of environment variables.
## Additional Notes / Gotchas
Nothing specific to this stack so far.
## Dockhand Stack, Deploy from Git
Cookbooks Repository
stackname: peertube_dev
Compose file path: peertube_dev/compose.yaml
Additional env file (optional): peertube_dev/sample.env
Then "Load" peertube_dev/sample.env into the Environmental variables in dockhand
Create the Stack