24 lines
442 B
YAML
24 lines
442 B
YAML
|
services:
|
||
|
jellyfin:
|
||
|
image: jellyfin/jellyfin
|
||
|
user: "1000:1000"
|
||
|
ports:
|
||
|
- 8096:8096
|
||
|
volumes:
|
||
|
- ./config:/config
|
||
|
- ./cache:/cache
|
||
|
- type: bind
|
||
|
source: /media/hda1/jellyfin
|
||
|
target: /media
|
||
|
devices:
|
||
|
- /dev/dri/renderD128:/dev/dri/renderD128
|
||
|
environment:
|
||
|
- TZ=Europe/Kyiv
|
||
|
networks:
|
||
|
- net
|
||
|
restart: 'unless-stopped'
|
||
|
|
||
|
networks:
|
||
|
net:
|
||
|
external: true
|