commit 3a94065877955b9c81eed89ba2f929f39378b1ed Author: Ryan Harg Date: Wed Sep 11 13:43:52 2024 +0200 Initial diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f733c4b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +config/ diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..e1ec254 --- /dev/null +++ b/compose.yml @@ -0,0 +1,28 @@ +--- +services: + jellyfin: + image: lscr.io/linuxserver/jellyfin:latest + container_name: jellyfin + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - JELLYFIN_PublishedServerUrl=media.azw27.de #optional + volumes: + - ./config:/config + - /mnt/FS1:/data/FS1 + - /mnt/FS2:/data/FS2 + ports: + - 8096:8096 + #- 8920:8920 #optional + - 7359:7359/udp #optional + - 1900:1900/udp #optional + restart: unless-stopped + networks: + - nginx_proxy + - web + +networks: + nginx_proxy: + external: true + web: