1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/minidlna/Dockerfile
libesz e3b14f26ac minidlna is not the valid binary name
Hi,
 Tried to use this image and realized that minidlna not anymore exists:
/opt # ls -l /usr/sbin/
[...]
-rwxr-xr-x    2 root     root        269464 Apr 29 22:44 minidlnad
So there is minidlnad instead.

Maybe the name changed recently:
https://pkgs.alpinelinux.org/contents?branch=v3.4&name=minidlna&arch=x86_64&repo=main
2016-07-18 21:05:49 +02:00

19 lines
235 B
Docker

#
# 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 ["minidlnad", "-d"]