Today, 04:51 AM
(Yesterday, 01:58 PM)tomahawk5000 Wrote: Hi, this is my first post in here and sorry for my bad English. Just wanted to ask if anybody can help me with jellyfin on Synology container manager. Everything works fine except plugins Catalogue which is empty. Once I click on the jellyfin repository source I open a website. I think it's docker issue because once I installed jellyfin via synocommunity then I didn't have any issue but from security perspective I'd prefer docker.
Ps I have used this tutorial https://youtu.be/uB9Tyl8cLGE?si=om2oT7HegaWAubjV
Hello, maybe you can try to using network mode "host". or you can you this compose yml file that I used have been worked. Hope it helped.
services:
jellyfin:
#for specific image-> image: jellyfin/jellyfin:10.8.13
image: jellyfin/jellyfin:latest
container_name: Jellyfin
environment:
#- PUID=0
#- PGID=0
- TZ=Asia/Jakarta
#- JELLYFIN_PublishedServerUrl=192.168.1.#
#note: change TZ to your timezone identifier: https://en.wikipedia.org/wiki/List_of_tz...time_zones
volumes:
- /path/docker/jellyfin/cachecache:rw
- /path/docker/jellyfin/configconfig:rw
- /path/VIDEOsource/MOVIES:rw
#note: (:rw = read/write) & (:ro = read only)
#devices:
#- /dev/dri/renderD128dev/dri/renderD128
#- /dev/dri/card0dev/dri/card0
#note: uncomment these lines in devices to allow for HWA to work on Synology units with an iGPU
ports:
- 8096:8096/tcp
#- <port-to-use>:8096/tcp
#network_mode: bridge
network_mode: host
restart: unless-stopped