2023-11-21, 05:10 PM
(This post was last modified: 2023-11-21, 05:13 PM by User 3911. Edited 1 time in total.)
I am using Gotify for some bash scripts and Uptime Kuma, Works great. I noticed I could also use it with Jellyfin so I wanted to give it a go. Just like Uptime Kuma and Gotify itself I use a docker container for Jellyfin, same homelab. All behind Ngnix Proxy Manager, However Gotify does not recieve a single message and I can't figure out why not. Token and url are correct. There is not much that go wrong really Anyone an idea how to fix this?
Version: 10.8.12
Operating System: Linux
Architecture: X64
Code:
version: "3.5"
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
network_mode: "host"
group_add:
- "110"
volumes:
- /srv/jellyfin/config:/config
- /srv/jellyfin/cache:/cache
- /media:/media
devices:
- /dev/dri/renderD128:/dev/dri/renderD128
restart: "always"
# Optional - alternative address used for autodiscovery
environment:
- JELLYFIN_PublishedServerUrl=https://domain.com
Version: 10.8.12
Operating System: Linux
Architecture: X64