Jellyfin Forum
DLNA help, first time install of jellyfin - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: DLNA help, first time install of jellyfin (/t-dlna-help-first-time-install-of-jellyfin)



DLNA help, first time install of jellyfin - Wayne Sepega - 2025-10-05

Version V10.10.7
I've installed Jellyfin docker container, I can access the website just fine, but I'm not able to access anything via any DLNA clients.
I've googled and it says to install the DLNA plugin, but I don't see it in the plugin list.
is there a repository I need to add for the plugin to show up? Any troubleshooting tips that can be offered to track down the issue?

Here is my docker compose settings if it helps, may have more than needed as I was going back and forth between miniDLNA and Jellyfin (wiping the cache/config dirs between swaps).
Code:
version: '3.9'
services:
    dlna:
        image: 'jellyfin/jellyfin'
        restart: unless-stopped
        user: 1000:1000
        ports:
            - '8096:8096/udp'
            - '8096:8096/tcp'
            - '1900:1900/udp'
            - '1900:1900/tcp'
        volumes:
          - '/home/username/.config/docker/dlna/cache:/cache'
          - '/home/username/.config/docker/dlna/config:/config'
          - '/home/username/.config/docker/dlna/media:/media'
        environment:
          - 'JELLYFIN_PublishedServerUrl=http://192.168.1.188'
        network_mode: host

Any help would be greatly appreciated.