Files
docker-compose-cookbooks/wallabag_dev/compose.yaml
T
codeandClaude Fable 5 8ab413804a normalize all stacks to conventions
- 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>
2026-07-16 06:24:54 +00:00

55 lines
1.6 KiB
YAML

# Wallabag Read-It-Later
services:
wallabag:
image: ${WALLABAG_IMAGE:-wallabag/wallabag:latest}
restart: ${WALLABAG_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/wallabag/images:/var/www/wallabag/web/assets/images
environment:
- TZ=${TZ:-America/Vancouver}
- MYSQL_ROOT_PASSWORD=${WALLABAG_MYSQL_ROOT_PASSWORD:-ChangeThisPassword}
- SYMFONY__ENV__DATABASE_DRIVER=pdo_mysql
- SYMFONY__ENV__DATABASE_HOST=wallabag-db
- SYMFONY__ENV__DATABASE_PORT=3306
- SYMFONY__ENV__DATABASE_NAME=${WALLABAG_DB_NAME:-wallabag}
- SYMFONY__ENV__DATABASE_USER=${WALLABAG_DB_USER:-wallabag}
- SYMFONY__ENV__DATABASE_PASSWORD=${WALLABAG_DB_PASSWORD:-ChangeThisPassword}
- SYMFONY__ENV__DATABASE_CHARSET=utf8mb4
- SYMFONY__ENV__DATABASE_TABLE_PREFIX=wallabag_
- SYMFONY__ENV__MAILER_DSN=${WALLABAG_MAILER_DSN:-smtp://127.0.0.1}
- SYMFONY__ENV__FROM_EMAIL=${WALLABAG_FROM_EMAIL:-wallabag@example.com}
- SYMFONY__ENV__DOMAIN_NAME=${WALLABAG_DOMAIN:-http://localhost:8082}
- SYMFONY__ENV__SERVER_NAME=${WALLABAG_SERVER_NAME:-wallabag}
ports:
- "${WALLABAG_PORT:-8082}:80"
networks:
- proxy
- internal
depends_on:
- wallabag-db
wallabag-db:
image: ${MARIADB_IMAGE:-mariadb:11}
restart: ${WALLABAG_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/wallabag/db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=${WALLABAG_MYSQL_ROOT_PASSWORD:-ChangeThisPassword}
networks:
- internal
networks:
proxy:
external: true
internal:
driver: bridge