First working version

This commit is contained in:
2020-04-30 12:36:27 +02:00
parent 5d1a8bbd52
commit f18e948aad
8 changed files with 495 additions and 2 deletions

9
mpd-docker/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM ubuntu:xenial
RUN apt-get update && apt-get upgrade -y \
&& apt-get install mpd mpc -y \
&& apt-get clean
COPY mpd.conf /etc/mpd.conf
COPY entry.sh /
EXPOSE 6600
CMD ["/entry.sh"]