mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
- VOL_PATH always defaults to /data; vscode/opencode VOL_PROJECTS nests it - TZ defaults to America/Vancouver (was UTC in etherpad, ntfy, redis) - compose section order fixed (volumes before environment, command after networks) - all default secrets are the literal ChangeThisPassword (grep-friendly, users must change them); removed a real key from ollama sample.env - sample.env synced with compose: missing vars added with defaults, dead vars removed - invoiceninja_dev/openarchiver_dev: app services had no environment block, wired all sample.env vars through so the stacks actually work - opencode: sample.env OLLAMA_HOST renamed to OLLAMA_HOST_URL to match compose - TZ values unquoted consistently Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
595 B
Bash
19 lines
595 B
Bash
# Compose
|
|
VOL_PATH=/data
|
|
PENPOT_RESTART=unless-stopped
|
|
PENPOT_PORT=9001
|
|
PENPOT_FRONTEND_IMAGE=penpotapp/frontend:latest
|
|
PENPOT_BACKEND_IMAGE=penpotapp/backend:latest
|
|
PENPOT_EXPORTER_IMAGE=penpotapp/exporter:latest
|
|
PENPOT_POSTGRES_IMAGE=postgres:15
|
|
PENPOT_REDIS_IMAGE=redis:7.2
|
|
PENPOT_MAILCATCH_IMAGE=sj26/mailcatcher:latest
|
|
|
|
# Penpot
|
|
PENPOT_PUBLIC_URI=http://localhost:9001
|
|
PENPOT_FLAGS=disable-email-verification enable-smtp enable-prepl-server disable-secure-session-cookies
|
|
PENPOT_SMTP_FROM=no-reply@example.com
|
|
PENPOT_TELEMETRY=true
|
|
PENPOT_BODY_SIZE=31457280
|
|
PENPOT_MULTIPART_SIZE=367001600
|