All checks were successful
Deploy server-up (dev) / deploy (push) Successful in 2m31s
- Sjablonen kunnen nu secret_format ("hex" of "laravel") en secret_bytes
opgeven. De generator maakte altijd url-veilige base64, en dat is precies wat
Laravel, Homarr en LibreChat weigeren
- Daarmee kwamen twee fouten uit v0.8.00 aan het licht: Homarr en LibreChat
kregen sleutels die hun containers niet accepteren. Rechtgezet
- Snipe-IT en Invoice Ninja alsnog toegevoegd; die vielen vorige ronde af omdat
hun APP_KEY niet te genereren was
- 19 vervangers voor big tech erbij, van 197 naar 218 apps:
Baikal en Radicale (Google Agenda/Contacten), LibreTranslate (Translate),
CryptPad, Collabora en ONLYOFFICE (Google Docs), Formbricks (Forms),
Jitsi Meet (Meet/Zoom), PeerTube, Invidious en Tube Archivist (YouTube),
Owncast (Twitch), Mastodon (X), Pixelfed (Instagram), Lemmy (Reddit),
Cal.com (Calendly), Rallly (Doodle), DocuSeal (DocuSign), Penpot (Figma)
- Communicatie van 12 naar 16 apps, productiviteit van 21 naar 31
- Nieuwe JS-test voor de sleutelformaten; alle 242 images in de catalogus
opnieuw tegen hun registry gecontroleerd
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Q9eqpADJSRs49SoGGr4NAy
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
services:
|
|
<< service_name >>:
|
|
image: chocobozzz/peertube:production-bookworm
|
|
container_name: << service_name >>
|
|
environment:
|
|
- TZ=<< timezone >>
|
|
- PEERTUBE_WEBSERVER_HOSTNAME=<< hostname >>
|
|
- PEERTUBE_WEBSERVER_PORT=443
|
|
- PEERTUBE_WEBSERVER_HTTPS=true
|
|
- PEERTUBE_DB_HOSTNAME=<< service_name >>-db
|
|
- PEERTUBE_DB_USERNAME=peertube
|
|
- PEERTUBE_DB_PASSWORD=<< db_password >>
|
|
- PEERTUBE_REDIS_HOSTNAME=<< service_name >>-redis
|
|
- PEERTUBE_SECRET=<< peertube_secret >>
|
|
- PEERTUBE_ADMIN_EMAIL=<< admin_email >>
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>:/data
|
|
- << appdata_dir >>/<< service_name >>-config:/config
|
|
ports:
|
|
- "<< port >>:9000"
|
|
depends_on:
|
|
- << service_name >>-db
|
|
- << service_name >>-redis
|
|
restart: unless-stopped
|
|
<< service_name >>-db:
|
|
image: postgres:16-alpine
|
|
container_name: << service_name >>-db
|
|
environment:
|
|
- POSTGRES_DB=peertube
|
|
- POSTGRES_USER=peertube
|
|
- POSTGRES_PASSWORD=<< db_password >>
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>-db:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
<< service_name >>-redis:
|
|
image: valkey/valkey:8-alpine
|
|
container_name: << service_name >>-redis
|
|
command: valkey-server --save 60 1
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>-redis:/data
|
|
restart: unless-stopped
|