mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-17 16:50:53 +00:00
- Fix channel_group_id not updating on M3U stream refresh - Fix SD content rating region selection (country-aware filtering) - Fix SD season/episode metadata iteration - Add SD data enrichment: entityType, showType, contentAdvisory, originalAirDate, country, runtime, star ratings, event details, character names - Cap cast to top-billed, remove role noise - Switch artwork preference to Banner-L1 (branded key art) - Add content advisory, sports details, runtime to program detail modal - Logo cache-busting for browser cache invalidation - SD API compliance: rolling 24h lineup reset, tokenExpires caching, error caching
43 lines
1,020 B
YAML
43 lines
1,020 B
YAML
services:
|
|
dispatcharr:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
container_name: dispatcharr_dev
|
|
restart: unless-stopped
|
|
ports:
|
|
- 9191:9191
|
|
- 8001:8001
|
|
volumes:
|
|
- dispatcharr_data:/data
|
|
environment:
|
|
- POSTGRES_HOST=db
|
|
- POSTGRES_PORT=5432
|
|
- POSTGRES_DB=dispatcharr
|
|
- POSTGRES_USER=dispatch
|
|
- POSTGRES_PASSWORD=secret
|
|
- DJANGO_SECRET_KEY=dev-secret-key-not-for-production
|
|
- DISPATCHARR_LOG_LEVEL=info
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
|
|
db:
|
|
image: postgres:17
|
|
container_name: dispatcharr_dev_db
|
|
restart: unless-stopped
|
|
environment:
|
|
- POSTGRES_DB=dispatcharr
|
|
- POSTGRES_USER=dispatch
|
|
- POSTGRES_PASSWORD=secret
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U dispatch -d dispatcharr"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
volumes:
|
|
dispatcharr_data:
|
|
postgres_data:
|