4aff9c557d
- Renamed docker-compose.dev.yml → docker-compose.override.yml so Docker
Compose auto-merges it. `docker compose up` (no -f) now Just Works for
local development.
- Removed the `env_file: .env` requirement from every service in the base
file. Operators no longer need to create a .env to bring the stack up.
- Baked sane dev defaults directly into docker-compose.yml via
${VAR:-default} interpolation:
DB_USER=fabledcurator
DB_PASSWORD=fabledcurator_dev
DB_NAME=fabledcurator
SECRET_KEY=dev_secret_key_not_for_production_change_me
LOG_LEVEL=INFO (overridden to DEBUG by the dev override)
Defaults are insecure but explicitly named so. For production, override
via shell env vars or a .env file at the project root.
- README quick-start simplified to a single `docker compose up -d`.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
104 lines
3.0 KiB
YAML
104 lines
3.0 KiB
YAML
# Base compose stack. Uses ${VAR:-default} interpolation throughout so the
|
|
# stack boots with zero config — sane dev defaults baked in. For production
|
|
# deployments, override the defaults via shell env vars or a .env file:
|
|
#
|
|
# DB_PASSWORD=...real... SECRET_KEY=...real... docker compose up
|
|
#
|
|
# The dev override (docker-compose.override.yml) is auto-merged when you
|
|
# run `docker compose up` from this directory and switches images to
|
|
# local builds + DEBUG logging.
|
|
|
|
services:
|
|
redis:
|
|
image: redis:7-alpine
|
|
volumes:
|
|
- redis_data:/data
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
environment:
|
|
POSTGRES_USER: ${DB_USER:-fabledcurator}
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD:-fabledcurator_dev}
|
|
POSTGRES_DB: ${DB_NAME:-fabledcurator}
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U ${DB_USER:-fabledcurator}"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
web:
|
|
image: git.fabledsword.com/bvandeusen/fabledcurator:dev
|
|
command: ["web"]
|
|
ports:
|
|
- "${PORT:-8080}:8080"
|
|
environment: &app_env
|
|
DB_USER: ${DB_USER:-fabledcurator}
|
|
DB_PASSWORD: ${DB_PASSWORD:-fabledcurator_dev}
|
|
DB_HOST: postgres
|
|
DB_PORT: "5432"
|
|
DB_NAME: ${DB_NAME:-fabledcurator}
|
|
CELERY_BROKER_URL: redis://redis:6379/0
|
|
CELERY_RESULT_BACKEND: redis://redis:6379/0
|
|
SECRET_KEY: ${SECRET_KEY:-dev_secret_key_not_for_production_change_me}
|
|
EXTENSION_API_KEY: ${EXTENSION_API_KEY:-}
|
|
LOG_LEVEL: ${LOG_LEVEL:-INFO}
|
|
volumes:
|
|
- ./images:/images
|
|
- ./import:/import
|
|
- ./downloads:/downloads
|
|
depends_on:
|
|
postgres: { condition: service_healthy }
|
|
redis: { condition: service_healthy }
|
|
|
|
worker:
|
|
image: git.fabledsword.com/bvandeusen/fabledcurator:dev
|
|
command: ["worker"]
|
|
environment:
|
|
<<: *app_env
|
|
CELERY_QUEUES: default,import,thumbnail,download
|
|
CELERY_CONCURRENCY: "2"
|
|
volumes:
|
|
- ./images:/images
|
|
- ./import:/import
|
|
- ./downloads:/downloads
|
|
depends_on:
|
|
postgres: { condition: service_healthy }
|
|
redis: { condition: service_healthy }
|
|
|
|
scheduler:
|
|
image: git.fabledsword.com/bvandeusen/fabledcurator:dev
|
|
command: ["scheduler"]
|
|
environment:
|
|
<<: *app_env
|
|
CELERY_QUEUES: maintenance,scan
|
|
volumes:
|
|
- ./images:/images
|
|
- ./import:/import
|
|
- ./downloads:/downloads
|
|
depends_on:
|
|
postgres: { condition: service_healthy }
|
|
redis: { condition: service_healthy }
|
|
|
|
ml-worker:
|
|
image: git.fabledsword.com/bvandeusen/fabledcurator-ml:dev
|
|
command: ["ml-worker"]
|
|
environment:
|
|
<<: *app_env
|
|
volumes:
|
|
- ./images:/images:ro
|
|
- ./models:/models
|
|
depends_on:
|
|
postgres: { condition: service_healthy }
|
|
redis: { condition: service_healthy }
|
|
|
|
volumes:
|
|
redis_data:
|
|
postgres_data:
|