https://github.com/djdefi/rpi-docker-minidlna
minidlna server on ARM in Docker
https://github.com/djdefi/rpi-docker-minidlna
arm docker minidlna raspberry-pi rpi
Last synced: 11 months ago
JSON representation
minidlna server on ARM in Docker
- Host: GitHub
- URL: https://github.com/djdefi/rpi-docker-minidlna
- Owner: djdefi
- License: unlicense
- Created: 2016-07-15T05:10:55.000Z (almost 10 years ago)
- Default Branch: main
- Last Pushed: 2023-05-01T13:57:52.000Z (about 3 years ago)
- Last Synced: 2025-07-14T12:41:40.148Z (12 months ago)
- Topics: arm, docker, minidlna, raspberry-pi, rpi
- Language: Shell
- Homepage:
- Size: 21.5 KB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minidnla in docker for Raspberry Pi / armhf
Based on https://github.com/bobrik/docker-minidlna
This is minidlna on top of Alpine Linux.
It can be configured with environment variables.
## Usage
Prefix any config directive of minidlna with `MINIDLNA_`
and run your container:
```
docker run -d --net=host -v :/media \
-e MINIDLNA_MEDIA_DIR=/media \
-e MINIDLNA_LISTENING_IP=192.168.0.5 \
-e MINIDLNA_PORT=8200 \
-e MINIDLNA_FRIENDLY_NAME=callisto \
djdefi/rpi-minidlna
```
See: http://manpages.ubuntu.com/manpages/raring/man5/minidlna.conf.5.html
Let me know if you figure out how to run it without `--net=host`.