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
69 lines
2.3 KiB
YAML
69 lines
2.3 KiB
YAML
services:
|
|
<< service_name >>:
|
|
image: jitsi/web:stable
|
|
container_name: << service_name >>
|
|
environment:
|
|
- TZ=<< timezone >>
|
|
- ENABLE_AUTH=0
|
|
- ENABLE_GUESTS=1
|
|
- PUBLIC_URL=<< public_url >>
|
|
- XMPP_SERVER=<< service_name >>-prosody
|
|
- XMPP_DOMAIN=meet.jitsi
|
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
|
- XMPP_MUC_DOMAIN=muc.meet.jitsi
|
|
- XMPP_BOSH_URL_BASE=http://<< service_name >>-prosody:5280
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>:/config
|
|
ports:
|
|
- "<< port >>:80"
|
|
depends_on:
|
|
- << service_name >>-prosody
|
|
restart: unless-stopped
|
|
<< service_name >>-prosody:
|
|
image: jitsi/prosody:stable
|
|
container_name: << service_name >>-prosody
|
|
environment:
|
|
- XMPP_DOMAIN=meet.jitsi
|
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
|
- XMPP_MUC_DOMAIN=muc.meet.jitsi
|
|
- XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
|
|
- JICOFO_AUTH_USER=focus
|
|
- JICOFO_AUTH_PASSWORD=<< jicofo_password >>
|
|
- JVB_AUTH_USER=jvb
|
|
- JVB_AUTH_PASSWORD=<< jvb_password >>
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>-prosody:/config
|
|
restart: unless-stopped
|
|
<< service_name >>-jicofo:
|
|
image: jitsi/jicofo:stable
|
|
container_name: << service_name >>-jicofo
|
|
environment:
|
|
- XMPP_SERVER=<< service_name >>-prosody
|
|
- XMPP_DOMAIN=meet.jitsi
|
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
|
- XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
|
|
- JICOFO_AUTH_USER=focus
|
|
- JICOFO_AUTH_PASSWORD=<< jicofo_password >>
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>-jicofo:/config
|
|
depends_on:
|
|
- << service_name >>-prosody
|
|
restart: unless-stopped
|
|
<< service_name >>-jvb:
|
|
image: jitsi/jvb:stable
|
|
container_name: << service_name >>-jvb
|
|
environment:
|
|
- XMPP_SERVER=<< service_name >>-prosody
|
|
- XMPP_AUTH_DOMAIN=auth.meet.jitsi
|
|
- XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
|
|
- JVB_AUTH_USER=jvb
|
|
- JVB_AUTH_PASSWORD=<< jvb_password >>
|
|
- JVB_PORT=<< port_media >>
|
|
- PUBLIC_URL=<< public_url >>
|
|
ports:
|
|
- "<< port_media >>:<< port_media >>/udp"
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>-jvb:/config
|
|
depends_on:
|
|
- << service_name >>-prosody
|
|
restart: unless-stopped
|