Jellyfin Forum
Jellyfin can see media folder but not media - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+---- Forum: Media Scanning & Identification (https://forum.jellyfin.org/f-media-scanning-identification)
+---- Thread: Jellyfin can see media folder but not media (/t-jellyfin-can-see-media-folder-but-not-media)



Jellyfin can see media folder but not media - wackyvert - 2024-10-12

I can find my media folder and set it on a library, but i CANNOT see any media inside of it.

I am running inside of Docker on ubuntu. here is my compose
Services:
  jellyfin:
    image: jellyfin/jellyfin
    container_name: jellyfin
    network_mode: 'host'
    volumes:
      - /jellyfin/jellyfin-configConfused-faceconfig
      - /jellyfin/jellyfin-cacheConfused-facecache
      - /jellyfin/mediaConfused-facemedia
      - type: bind
        source: /jellyfin/media/
        target: /media
    restart: 'unless-stopped'
    # Optional - alternative address used for autodiscovery
    environment:
      - JELLYFIN_PublishedServerUrl=http://example.com
    # Optional - may be necessary for docker healthcheck to pass if running in >
    extra_hosts:
      - 'host.docker.internal:host-gateway'


I've ran chmod and chown on that directory numerous times


RE: Jellyfin can see media folder but not media - TheDreadPirate - 2024-10-13

You have your media listed twice. Remove the bind mount. You only need the first volume mount.

Code:
- /jellyfin/media:/media