2025-04-06, 12:55 PM 
(This post was last modified: 2025-04-06, 01:00 PM by SirCode. Edited 1 time in total.)
		
	
	
		I recently migrated my native jellyfin media server instance to a Docker container. Im currently running on PopOS Cosmic (24.04 LTS) and using the latest version of docker I can install right now (28.0.4)
I tried scanning some media / editing the images and info on current media, and nothing ever shows up in search results. Its always blank.
Initially I thought it was the container lacking access to the internet, but Ive since confirmed (by exec'ing into it, and curl'ing google) that it does have internet... So jellyfin is the root of the problem here.
I assume its probably some kind of configuration or config error since I migrated, but I have no idea what could cause it.
I would really appreciate some assistance here
Also it may be related, or a secondary issue, but when I try to edit the settings for a library, it says its in an invalid state and cannot be edited:
   
 
Heres my docker compose:
What I see any time I search for images / identify / etc:
   
	
	  
	
	
I tried scanning some media / editing the images and info on current media, and nothing ever shows up in search results. Its always blank.
Initially I thought it was the container lacking access to the internet, but Ive since confirmed (by exec'ing into it, and curl'ing google) that it does have internet... So jellyfin is the root of the problem here.
I assume its probably some kind of configuration or config error since I migrated, but I have no idea what could cause it.
I would really appreciate some assistance here
Also it may be related, or a secondary issue, but when I try to edit the settings for a library, it says its in an invalid state and cannot be edited:
Heres my docker compose:
Code:
services:
  jellyfin:
    image: jellyfin/jellyfin
    container_name: Jellytart
    user: 1000:1000
    ports:
      - 8096:8096
    volumes:
      - type: bind
        source: /media/gscomp/Jellyfin/Data/config
        target: /config
      - type: bind
        source: /media/gscomp/Jellyfin/Data/cache
        target: /cache
      - type: bind
        source: /media/gscomp/Jellyfin/Data/etc
        target: /etc
      - type: bind
        source: /media/gscomp/Jellyfin/Data/logs
        target: /logs
      - type: bind
        source: /media/gscomp/Jellyfin/Media/
        target: /media/gscomp/Jellyfin/Media/
    restart: alwaysWhat I see any time I search for images / identify / etc:

