From 158bc70c3ccda7385168fcfecb5e4a701f3facdd Mon Sep 17 00:00:00 2001 From: Youe Graillot Date: Sat, 26 Nov 2022 16:30:53 +0100 Subject: [PATCH] minor fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d9374b..da74c52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,9 +17,9 @@ COPY lidarr-flac2mp3/root/usr /usr # deemix COPY --from=deemix /deemix-server /deemix-server RUN chmod +x /deemix-server -VOLUME "/config_deemix" "/downloads" +VOLUME ["/config_deemix", "/downloads"] EXPOSE 6595 COPY root / -VOLUME "/config" "/music" +VOLUME ["/config", "/music"] EXPOSE 6595 8686