Files

19 lines
580 B
YAML
Raw Permalink Normal View History

2026-04-15 09:27:29 +12:00
services:
emby-thumb-gen:
build: .
container_name: emby-thumb-gen
ports:
- "8500:8500"
environment:
- EMBY_URL=http://your-emby-server:8096
- EMBY_API_KEY=your-api-key-here
2026-04-20 23:16:53 +12:00
# Optional external artwork providers:
# - TMDB_BEARER_TOKEN=your-tmdb-read-access-token
# - TMDB_API_KEY=your-tmdb-v3-api-key
# - GOOGLE_CUSTOM_SEARCH_API_KEY=your-google-api-key
# - GOOGLE_CUSTOM_SEARCH_ENGINE_ID=your-google-search-engine-id
2026-04-15 09:27:29 +12:00
volumes:
- ./output:/app/output
- ./cache:/app/cache
restart: unless-stopped