• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Jellyfin 10.10.0 empty plugins Catalogue

     
    • 0 Vote(s) - 0 Average

    Jellyfin 10.10.0 empty plugins Catalogue

    Synology container manager user
    tomahawk5000
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2024 Oct
    Reputation: 0
    Country:Poland
    #1
    2024-10-29, 01:58 PM
    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
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-10-29, 02:21 PM
    Can you share your jellyfin server logs via pastebin?
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    tomahawk5000
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2024 Oct
    Reputation: 0
    Country:Poland
    #3
    2024-10-29, 02:49 PM (This post was last modified: 2024-10-29, 03:23 PM by tomahawk5000. Edited 1 time in total.)
    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.


    Attached Files
    .zip   log.zip (Size: 283.4 KB / Downloads: 45)
    Fate
    Offline

    Member

    Posts: 220
    Threads: 3
    Joined: 2023 Jun
    Reputation: 16
    #4
    2024-10-29, 03:19 PM
    (2024-10-29, 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)
    tomahawk5000
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2024 Oct
    Reputation: 0
    Country:Poland
    #5
    2024-10-29, 03:29 PM (This post was last modified: 2024-10-29, 03:30 PM by tomahawk5000. Edited 1 time in total.)
    should I change something in here:
    Code:
    services:
      jellyfin:
        image: jellyfin/jellyfin
        container_name: jellyfin
        volumes:
          - /volume1/docker/jellyfin/config:/config
          - /volume1/docker/jellyfin/cache:/cache
          - /volume1/video:/media
          - /volume1/Photo:/photo:ro
        restart: 'unless-stopped'
        ports:
          - 8096:8096
        environment:
          - TZ=Europe/Warsaw
          - PUID=1026
          - PGID=100
        # Optional - alternative address used for autodiscovery
        # environment:
          # - JELLYFIN_PublishedServerUrl=http://example.com
        # Optional - may be necessary for docker healthcheck to pass if running in host network mode
        # extra_hosts:
        #  - 'host.docker.internal:host-gateway'
    Fate
    Offline

    Member

    Posts: 220
    Threads: 3
    Joined: 2023 Jun
    Reputation: 16
    #6
    2024-10-29, 03:32 PM
    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?
    tomahawk5000
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2024 Oct
    Reputation: 0
    Country:Poland
    #7
    2024-10-29, 03:40 PM (This post was last modified: 2024-10-29, 04:02 PM by tomahawk5000. Edited 4 times in total.)
    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:
      jellyfin:
        image: jellyfin/jellyfin
        container_name: jellyfin
        network_mode: host
        volumes:
          - /volume1/docker/jellyfin/config:/config
          - /volume1/docker/jellyfin/cache:/cache
          - /volume1/video:/media
          - /volume1/Photo:/photo:ro
        restart: 'unless-stopped'
        ports:
          - 8096:8096
        environment:
          - TZ=Europe/Warsaw
          - PUID=1026
          - PGID=100
        # Optional - alternative address used for autodiscovery
        # environment:
          # - JELLYFIN_PublishedServerUrl=http://example.com
        # Optional - may be necessary for docker healthcheck to pass if running in host network mode
        # extra_hosts:
        #  - 'host.docker.internal:host-gateway'
    please let me know if I should not add that line!

    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
    baliem1213
    Offline

    Junior Member

    Posts: 1
    Threads: 0
    Joined: 2024 Oct
    Reputation: 0
    Country:Indonesia
    #8
    2024-10-30, 04:51 AM
    (2024-10-29, 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/cacheConfused-facecache:rw

          - /path/docker/jellyfin/configConfused-faceconfig:rw

          - /path/VIDEOsource/Confused-faceMOVIES:rw


          #note: (:rw = read/write) & (:ro = read only)

        #devices:

          #- /dev/dri/renderD128Confused-facedev/dri/renderD128

          #- /dev/dri/card0Confused-facedev/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
    1
    tomahawk5000
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2024 Oct
    Reputation: 0
    Country:Poland
    #9
    2024-10-30, 11:13 AM
    (2024-10-30, 04:51 AM)baliem1213 Wrote:
    (2024-10-29, 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/cacheConfused-facecache:rw

          - /path/docker/jellyfin/configConfused-faceconfig:rw

          - /path/VIDEOsource/Confused-faceMOVIES:rw


          #note: (:rw = read/write) & (:ro = read only)

        #devices:

          #- /dev/dri/renderD128Confused-facedev/dri/renderD128

          #- /dev/dri/card0Confused-facedev/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

    thank you
    changing network from bridge to host works perfectly!
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode