mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-12 11:15:04 +02:00
17 lines
192 B
Docker
17 lines
192 B
Docker
#
|
|
# Dockerfile minidlna
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN apk add --no-cache minidlna
|
|
|
|
VOLUME /opt
|
|
WORKDIR /opt
|
|
|
|
EXPOSE 1900/udp
|
|
EXPOSE 8200/tcp
|
|
|
|
CMD ["minidlnad", "-d"]
|