JG-mirror/LXC/Jellyfin/docker-compose.yaml

25 lines
929 B
YAML
Raw Normal View History

2024-02-05 22:24:04 +00:00
version: "2"
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
group_add:
2024-02-05 22:26:09 +00:00
- '107' # This needs to be the group id of your GPU, e.g., `stat -c '%g' /dev/dri/renderD128` on the docker host for iGPU
2024-02-05 22:24:04 +00:00
environment:
- TZ=Europe/London
volumes:
- ./jellyfin/config:/config
- ./jellyfin/cache:/cache
- /films:/films
# - /home/ubuntu/YOUR_NAS/Films:/Films:ro
# - /home/ubuntu/YOUR_NAS/TVShows:/TVShows:ro
# - /home/ubuntu/YOUR_NAS/Audiobooks:/Audiobooks:ro
# - /home/ubuntu/YOUR_NAS/Music:/Music:ro
ports: # You will need to uncomment if you aren't running through a proxy
- 8096:8096
- 8920:8920 #optional
- 7359:7359/udp #optional
- 1900:1900/udp #optional
devices: # uncomment these and amend if you require GPU accelerated transcoding
2024-02-05 22:26:09 +00:00
- /dev/dri/renderD128:/dev/dri/renderD128
2024-02-05 22:24:04 +00:00
restart: unless-stopped