Add jellyfin

This commit is contained in:
Maurice
2025-10-03 15:29:44 +02:00
parent 88162ff382
commit bd02770b02
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
watch.goofjes.nl {
import https
import compression
import default-headers
log access
reverse_proxy jellyfin.container:8096
}

View File

@@ -0,0 +1,23 @@
user = "podman"
[service]
name = "jellyfin"
hostname = "jellyfin.container"
image = "jellyfin/jellyfin"
[[volumes]]
source = "/mnt/ssd/jellyfin/config"
target = "/config"
[[volumes]]
source = "/mnt/ssd/jellyfin/cache"
target = "/cache"
[[mounts]]
typ = "bind"
source = "/mnt/ssd/jellyfin/media"
target = "/media"
[[networks]]
name = "jellyfin-net"
group = "caddy"

7
services/ssd/install.sh Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
cat << EOF >> /etc/fstab
LABEL=Golvies /mnt/ssd ext4 defaults 0 0
EOF
mkdir -p /mnt/ssd
mount -a