Skip to content

Instantly share code, notes, and snippets.

@MaxVRAM
Created April 2, 2021 05:40
Show Gist options
  • Save MaxVRAM/1f33c747b00cd7a984f99aee807d3c5f to your computer and use it in GitHub Desktop.
Save MaxVRAM/1f33c747b00cd7a984f99aee807d3c5f to your computer and use it in GitHub Desktop.
My Jellyfin compose
version: "2"
services:
jellyfin:
image: ghcr.io/linuxserver/jellyfin
container_name: jellyfin
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Australia/Melbourne
volumes:
- /opt/jellyfin:/config #set this to wherever you want keep your config files
- /media/videos/complete/tv:/data/tvshows #set to your tvshow collection
- /media/videos/complete/movies:/data/movies #this too - I've got mine mounted to this dir on bootup
ports:
- 7012:8096 #change the first number to whatever port you want to connect on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment