#94 Init Jellyfin config
All checks were successful
Deploy to Fighter / Deploy (push) Successful in 41s
Deploy to Fighter / Notify (push) Successful in 2s

This commit is contained in:
Joey Hafner 2024-02-18 01:29:46 -08:00
parent 31f8919c39
commit d4db80abc3
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1 @@
DOCKER_DATA=/mnt/nas/media

View File

@ -0,0 +1,25 @@
version: '3.9'
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin_jellyfin
restart: "no"
networks:
- web
ports:
- 8096:8096
- 8920:8920
env_file:
- path: ./jellyfin.env
required: true
volumes:
- "${MEDIA_DIR}/Video/Movies:/data/movies"
- "${MEDIA_DIR}/Video/Shows:/data/tvshows"
- "${DOCKER_DATA}/jellyfin:/config"
labels:
- traefik.http.routers.jellyfin.rule=Host(`plex.jafner.net`)
- traefik.http.routers.jellyfin.tls.certresolver=lets-encrypt
networks:
web:
external: true

View File

@ -0,0 +1,3 @@
PUID=1002
PGID=1002
TZ=America/Los_Angeles