30 lines
728 B
YAML
Executable File
30 lines
728 B
YAML
Executable File
---
|
|
services:
|
|
jellyfin:
|
|
image: jellyfin/jellyfin
|
|
container_name: jellyfin
|
|
ports:
|
|
- "5001:8096"
|
|
devices:
|
|
- /dev/dri:/dev/dri
|
|
volumes:
|
|
- /home/docker/jellyfin:/config
|
|
- /home/docker/jellyfin/cache:/cache
|
|
- type: bind
|
|
source: /home/docker/media
|
|
target: /media
|
|
restart: 'unless-stopped'
|
|
environment:
|
|
- JELLYFIN_PublishedServerUrl=https://watch.blinker.club
|
|
jellyseerr:
|
|
image: fallenbagel/jellyseerr
|
|
restart: unless-stopped
|
|
volumes:
|
|
- '/home/docker/jellyseer:/app/config'
|
|
ports:
|
|
- '5002:5055'
|
|
environment:
|
|
- PORT=5055
|
|
- TZ=America/New_York
|
|
- LOG_LEVEL=debug
|
|
container_name: jellyseerr |