1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/mpd/arm/Dockerfile.debian

18 lines
304 B
Docker
Raw Normal View History

2016-08-23 12:18:02 +00:00
#
# 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"]