From 38f347eed03780c517e9861ee3597eb3cea3d336 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sun, 18 Aug 2019 10:32:38 -0500 Subject: [PATCH] Bump --- Dockerfile | 5 ++--- mopidy.conf => root/data/.config/mopidy.conf | 0 run.sh => root/usr/local/bin/run.sh | 0 3 files changed, 2 insertions(+), 3 deletions(-) rename mopidy.conf => root/data/.config/mopidy.conf (100%) rename run.sh => root/usr/local/bin/run.sh (100%) diff --git a/Dockerfile b/Dockerfile index e86324d..7261440 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,9 +48,8 @@ RUN \ EXPOSE 6600 6680 5555/UDP VOLUME /data /music -COPY mopidy.conf /data/.config/mopidy.conf -COPY run.sh /usr/local/bin/run.sh -RUN chmod +x /usr/local/bin/run.sh +COPY root/ / +RUN chmod +x /usr/local/bin/run.sh LABEL description "Open source media server" diff --git a/mopidy.conf b/root/data/.config/mopidy.conf similarity index 100% rename from mopidy.conf rename to root/data/.config/mopidy.conf diff --git a/run.sh b/root/usr/local/bin/run.sh similarity index 100% rename from run.sh rename to root/usr/local/bin/run.sh