1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/mpd/arm/Dockerfile.debian
2016-08-23 20:18:02 +08:00

18 lines
304 B
Docker

#
# Dockerfile for mpd-arm
#
FROM armhf/debian:jessie
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt-get update \
&& apt-get install -y mpd mpc \
&& rm -rf /var/lib/apt/lists/*
COPY mpd.conf /etc/mpd.conf
VOLUME /var/lib/mpd
EXPOSE 6600
CMD ["mpd", "--stdout", "--no-daemon"]