25 lines
890 B
YAML
25 lines
890 B
YAML
version: "3.5"
|
|
services:
|
|
jellyfin:
|
|
image: jellyfin/jellyfin
|
|
container_name: jellyfin
|
|
user: 1000:100
|
|
group_add:
|
|
- 107
|
|
network_mode: "host"
|
|
volumes:
|
|
- ./config:/config
|
|
- ./cache:/cache
|
|
- /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/music:/music
|
|
- /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/PicasaStarter/pictures/Pictures:/photos
|
|
- /srv/dev-disk-by-uuid-45e2e732-9e00-4a82-a7cc-9c743e033671/datastore/entertain:/entertain
|
|
|
|
restart: "unless-stopped"
|
|
# Optional - alternative address used for autodiscovery
|
|
environment:
|
|
- JELLYFIN_PublishedServerUrl=https://jellyfin.orlop.duckdns.org
|
|
#devices:
|
|
# VAAPI Devices (for omv :Intel NUC Board D54250WYK)
|
|
# - /dev/dri/renderD128:/dev/dri/renderD128
|
|
# - /dev/dri/card0:/dev/dri/card0
|