Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 835 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 835 Bytes

MiniDLNA

MiniDLNA is a simple media server software, with the aim of being fully compliant with DLNA/UPnP-AV clients.

MiniDLNA Docker Images

This image is based on Alpine Linux.

Usage

Example:

docker run -d --name minidlna \
  --net=host \
  -p 8200:8200 \
  -p 1900:1900/udp \
  -v <PATH_TO_MUSIC_DIR>:/opt/Music \
  -v <PATH_TO_VIDEOS_DIR>:/opt/Videos \
  -v <PATH_TO_PICUTRES_DIR>:/opt/Pictures \
  geekduck/minidlna

If you want to overwrite a config file:

docker run -d --name minidlna \
  --net=host \
  -p 8200:8200 \
  -p 1900:1900/udp \
  -v <PATH_TO_MUSIC_DIR>:/opt/Music \
  -v <PATH_TO_VIDEOS_DIR>:/opt/Videos \
  -v <PATH_TO_PICUTRES_DIR>:/opt/Pictures \
  -v <PATH_TO_CONFIG_DIR>/minidlna.conf:/etc/minidlna.conf \
  geekduck/minidlna