1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-18 04:59:16 +02:00
dockerfiles/mpd/Dockerfile

16 lines
267 B
Docker
Raw Normal View History

2016-08-17 11:09:57 +08:00
#
# Dockerfile for mpd
#
2021-12-02 10:59:46 +08:00
FROM alpine:3
2021-02-05 13:47:50 +08:00
MAINTAINER EasyPi Software Foundation
RUN set -xe \
2022-06-30 18:30:06 +08:00
&& apk add --no-cache mpd mpc ncmpc ncmpcpp \
2021-02-05 13:47:50 +08:00
&& setcap -r /usr/bin/mpd
2016-08-17 11:09:57 +08:00
VOLUME /var/lib/mpd
EXPOSE 6600
2022-06-30 16:44:06 +08:00
CMD ["mpd", "--stdout", "--no-daemon", "/etc/mpd/mpd.conf"]