2025-10-05, 11:09 PM
(This post was last modified: 2025-10-06, 01:47 AM by Wayne Sepega. Edited 1 time in total.)
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).
Any help would be greatly appreciated.
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.