I’m trying to setup my raspberry pi 3B as a wifi extender/dlna server in my home. Currently I have the Wifi extender working correctly using the balena wifi-repeater project as one of my services.
I’m trying to use minidlna as my dlna service as well as use filebrowser for easy http management of my media server. So far filebrowser is working well and can manage my media files and folders - but minidlna is not picking up any files within the media folder. This is my docker-compose.yml code:
version: "2.1"
services:
wifi-repeater:
build: .
privileged: true
labels:
io.balena.features.dbus: '1'
minidlna:
image: vladgh/minidlna
network_mode: "host"
volumes:
- 'media:/opt/media' # MiniDLNA will see /srv mapped as /opt/media
- 'config:/etc/minidlna'
environment:
- FRIENDLY_NAME=PiDLNAServer
restart: always
ports:
- "8200:8200" # MiniDLNA status page (optional)
filebrowser:
image: filebrowser/filebrowser
environment:
- PUID=1000 # User ID
- PGID=1000 # Group ID
- TZ=Etc/UTC # Set your timezone
volumes:
- 'media:/srv' # Expose media folder
ports:
- "8080:80" # Web UI port
restart: always
volumes:
config:
media:
If anyone knows where I’m going wrong here that would be a big help! Thanks