Jellyfin 10.10.0 empty plugins Catalogue - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Jellyfin 10.10.0 empty plugins Catalogue (/t-jellyfin-10-10-0-empty-plugins-catalogue) |
Jellyfin 10.10.0 empty plugins Catalogue - tomahawk5000 - 2024-10-29 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 RE: Jellyfin 10.10.0 empty plugins Catalogue - TheDreadPirate - 2024-10-29 Can you share your jellyfin server logs via pastebin? RE: Jellyfin 10.10.0 empty plugins Catalogue - tomahawk5000 - 2024-10-29 I am not sure what pastebian is but maybe txt will be good enough? btw I know that there is a way to manually load plugins and for now I need only TMDbBoxSets which I downloaded and paste here: /volume1/docker/jellyfin/config/plugins/TMDbBoxSets (file Jellyfin.Plugin.TMDbBoxSets.xml shows automatically in here: /volume1/docker/jellyfin/config/plugins/configurations/) seems that Jellyfin see that plugin (status active) but I think it does not work because I still haven't any covers on my collection folders. RE: Jellyfin 10.10.0 empty plugins Catalogue - Fate - 2024-10-29 (Yesterday, 02:49 PM)tomahawk5000 Wrote: I am not sure what pastebian is but maybe txt will be good enough? I think your DNS or network is broken... It can't each any website (jellyfin plugin repo/ github/ metadata provider) RE: Jellyfin 10.10.0 empty plugins Catalogue - tomahawk5000 - 2024-10-29 should I change something in here: Code: services: RE: Jellyfin 10.10.0 empty plugins Catalogue - Fate - 2024-10-29 I'm not a docker expert, maybe someone else can chime in Hard to tell whats wrong.... where is docker itself running on? Does it have internet? RE: Jellyfin 10.10.0 empty plugins Catalogue - tomahawk5000 - 2024-10-29 as I mentioned I have synology ds220+ with contaner manager (called docker a few updates before) NAS should has access to the internet because once I had Jellyfin installed from the synocommunity apps then everything works fine update there is a small progress I have added this command into YAML configuration file: 'network_mode: host' and now all settings looks like this: Code: services: and now I can see plugins catalogues so it's good but still my collections does not have any covers (by that I mean those pictures on the folders) Update2 collections works fine now thanks again all of you guys RE: Jellyfin 10.10.0 empty plugins Catalogue - baliem1213 - 2024-10-30 (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. 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_database_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 RE: Jellyfin 10.10.0 empty plugins Catalogue - tomahawk5000 - 2024-10-30 (10 hours ago)baliem1213 Wrote:(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. thank you changing network from bridge to host works perfectly! |