2024-08-17, 01:56 AM
Sure - I've tried two - the official one:
Redacted my domain, of course. This is the first one I had set up.
I have also tried this one
Regardless of the image, I have the same issue.
Code:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
user: 1001:1001
network_mode: 'host'
volumes:
- /configs/jellyfin:/config
- /cache/jellyfin:/cache
- type: bind
source: /mnt/drive/media
target: /media
restart: 'unless-stopped'
environment:
- JELLYFIN_PublishedServerUrl=MYDOMAINWENTHERE
Redacted my domain, of course. This is the first one I had set up.
I have also tried this one
Code:
services:
jellyfin:
restart: always
container_name: jellyfin
image: ghcr.io/hotio/jellyfin
ports:
- "8096:8096"
environment:
- PGID=1001
- PUID=1001
- UMASK=002
- TZ=Etc/UTC
volumes:
- /configs/jellyfin:/config
- /mnt/drive/media:/data
Regardless of the image, I have the same issue.