add minidlna

This commit is contained in:
kev 2016-05-08 21:34:04 +08:00
parent 415143d7a8
commit dada7e5d4f
4 changed files with 37 additions and 0 deletions

View File

@ -60,6 +60,7 @@ A collection of delicious docker recipes.
- [x] joomla
- [x] mantisbt
- [x] mariadb
- [x] minidlna
- [x] monit
- [x] moodle :beetle:
- [x] mosquitto

18
minidlna/Dockerfile Normal file
View File

@ -0,0 +1,18 @@
#
# Dockerfile minidlna
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& apk add -U minidlna \
&& rm -rf /var/cache/apk/*
VOLUME /opt
WORKDIR /opt
EXPOSE 1900/udp
EXPOSE 8200/tcp
CMD ["minidlna", "-d"]

10
minidlna/README.md Normal file
View File

@ -0,0 +1,10 @@
minidlna
========
![](https://badge.imagelayers.io/vimagick/minidlna:latest.svg)
ReadyMedia (formerly known as [MiniDLNA][1]) is a simple media server software, with
the aim of being fully compliant with DLNA/UPnP-AV clients. It is developed by
a NETGEAR employee for the ReadyNAS product line.
[1]: http://minidlna.sourceforge.net/

View File

@ -0,0 +1,8 @@
minidlna:
image: vimagick/minidlna
ports:
- "1900:1900/udp"
- "8200:8200/tcp"
volumes:
- ./data:/opt
restart: always