mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-22 05:09:09 +02:00
add minidlna
This commit is contained in:
parent
415143d7a8
commit
dada7e5d4f
@ -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
18
minidlna/Dockerfile
Normal 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
10
minidlna/README.md
Normal 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/
|
8
minidlna/docker-compose.yml
Normal file
8
minidlna/docker-compose.yml
Normal file
@ -0,0 +1,8 @@
|
||||
minidlna:
|
||||
image: vimagick/minidlna
|
||||
ports:
|
||||
- "1900:1900/udp"
|
||||
- "8200:8200/tcp"
|
||||
volumes:
|
||||
- ./data:/opt
|
||||
restart: always
|
Loading…
x
Reference in New Issue
Block a user