From 6963b644d9836547b0fde55858935a22190d9854 Mon Sep 17 00:00:00 2001 From: theflyingfool Date: Thu, 23 Nov 2023 12:31:53 -0600 Subject: [PATCH] Added Jellyfin stack Copied and pasted from current portainer installation. --- Jellyfin/docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Jellyfin/docker-compose.yml diff --git a/Jellyfin/docker-compose.yml b/Jellyfin/docker-compose.yml new file mode 100644 index 0000000..d46d75d --- /dev/null +++ b/Jellyfin/docker-compose.yml @@ -0,0 +1,18 @@ +version: '3.5' +services: + jellyfin: + image: jellyfin/jellyfin + container_name: jellyfin +# user: uid:gid + network_mode: 'host' + volumes: + - /home/nick/docker/jellyfin:/config + - /home/nick/docker/jellyfin/cache:/cache + - /mnt:/media + restart: 'unless-stopped' + # Optional - alternative address used for autodiscovery + environment: + - JELLYFIN_PublishedServerUrl=https://tv.tff.digital.com + # Optional - may be necessary for docker healthcheck to pass if running in host network mode +# extra_hosts: +# - "host.docker.internal:host-gateway" \ No newline at end of file