Created
April 2, 2021 05:40
My Jellyfin compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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