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
23 lines
671 B
YAML
23 lines
671 B
YAML
services:
|
|
<< service_name >>:
|
|
image: quay.io/invidious/invidious:latest
|
|
container_name: << service_name >>
|
|
environment:
|
|
- TZ=<< timezone >>
|
|
volumes:
|
|
- ./config.yml:/invidious/config/config.yml:ro
|
|
ports:
|
|
- "<< port >>:3000"
|
|
depends_on:
|
|
- << service_name >>-db
|
|
restart: unless-stopped
|
|
<< service_name >>-db:
|
|
image: postgres:16-alpine
|
|
container_name: << service_name >>-db
|
|
environment:
|
|
- POSTGRES_DB=invidious
|
|
- POSTGRES_USER=invidious
|
|
- POSTGRES_PASSWORD=<< db_password >>
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>-db:/var/lib/postgresql/data
|
|
restart: unless-stopped
|