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
56 lines
2 KiB
YAML
56 lines
2 KiB
YAML
services:
|
|
<< service_name >>:
|
|
image: penpotapp/frontend:latest
|
|
container_name: << service_name >>
|
|
environment:
|
|
- TZ=<< timezone >>
|
|
- PENPOT_FLAGS=enable-registration enable-login-with-password
|
|
- PENPOT_BACKEND_URI=http://<< service_name >>-backend:6060
|
|
- PENPOT_EXPORTER_URI=http://<< service_name >>-exporter:6061
|
|
ports:
|
|
- "<< port >>:8080"
|
|
depends_on:
|
|
- << service_name >>-backend
|
|
restart: unless-stopped
|
|
<< service_name >>-backend:
|
|
image: penpotapp/backend:latest
|
|
container_name: << service_name >>-backend
|
|
environment:
|
|
- PENPOT_FLAGS=enable-registration enable-login-with-password
|
|
- PENPOT_PUBLIC_URI=<< app_url >>
|
|
- PENPOT_SECRET_KEY=<< secret_key >>
|
|
- PENPOT_DATABASE_URI=postgresql://<< service_name >>-db/penpot
|
|
- PENPOT_DATABASE_USERNAME=penpot
|
|
- PENPOT_DATABASE_PASSWORD=<< db_password >>
|
|
- PENPOT_REDIS_URI=redis://<< service_name >>-redis/0
|
|
- PENPOT_ASSETS_STORAGE_BACKEND=assets-fs
|
|
- PENPOT_STORAGE_ASSETS_FS_DIRECTORY=/opt/data/assets
|
|
volumes:
|
|
- << appdata_dir >>/<< service_name >>-assets:/opt/data
|
|
depends_on:
|
|
- << service_name >>-db
|
|
- << service_name >>-redis
|
|
restart: unless-stopped
|
|
<< service_name >>-exporter:
|
|
image: penpotapp/exporter:latest
|
|
container_name: << service_name >>-exporter
|
|
environment:
|
|
- PENPOT_PUBLIC_URI=http://<< service_name >>:8080
|
|
restart: unless-stopped
|
|
<< service_name >>-db:
|
|
image: postgres:16-alpine
|
|
container_name: << service_name >>-db
|
|
environment:
|
|
- POSTGRES_DB=penpot
|
|
- POSTGRES_USER=penpot
|
|
- 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
|