14 lines
306 B
YAML
14 lines
306 B
YAML
|
|
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
|
||
|
|
volumes:
|
||
|
|
- ./output:/app/output
|
||
|
|
- ./cache:/app/cache
|
||
|
|
restart: unless-stopped
|