Skip to content

Instantly share code, notes, and snippets.

@mueslimak3r
Last active December 5, 2021 03:24
Show Gist options
  • Save mueslimak3r/24d5aa37dc9d6cc4e6a69f9d9d2a796f to your computer and use it in GitHub Desktop.
Save mueslimak3r/24d5aa37dc9d6cc4e6a69f9d9d2a796f to your computer and use it in GitHub Desktop.
jellyfin docker compose
---
version: "2.1"
services:
jellyfin:
image: linuxserver/jellyfin
container_name: jellyfin
#runtime: nvidia
environment:
- PUID=1000 # user id
- PGID=1000 # group id
- TZ=America/Los_Angeles
#- NVIDIA_VISIBLE_DEVICES=all # nvidia
#- NVIDIA_DRIVER_CAPABILITIES=all # nvidia
#- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
volumes:
- /.../AppData/JellyFin:/config
- /.../Media/TV:/data/tvshows
- /.../Media/Movies:/data/movies
- /.../Media/Music:/data/music
- /etc/localtime:/etc/localtime:ro
ports:
- 8096:8096
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment