mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-10 11:10:27 +02:00
18 lines
304 B
Docker
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"]
|