From 3a94065877955b9c81eed89ba2f929f39378b1ed Mon Sep 17 00:00:00 2001 From: Ryan Harg Date: Wed, 11 Sep 2024 13:43:52 +0200 Subject: [PATCH] Initial --- .gitignore | 1 + compose.yml | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 compose.yml 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: