From d3d89df55afbc0260dbbd6e6cfa2c44796ecccb5 Mon Sep 17 00:00:00 2001 From: artbird309 Date: Fri, 13 Nov 2020 08:40:24 -0500 Subject: [PATCH] Remove extra volumes from the Dockerfiles Specifying the volumes in the Dockerfile is unnecessary and can lead to excessive orphaned volume if the user chooses to use different paths at runtime. --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2df66a8..dac2635 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,4 +51,4 @@ COPY root/ / # ports and volumes EXPOSE 8181 -VOLUME /config /downloads /music +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index b24df0e..f355067 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -51,4 +51,4 @@ COPY root/ / # ports and volumes EXPOSE 8181 -VOLUME /config /downloads /music +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 02c6a5c..5f4b8f8 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -51,4 +51,4 @@ COPY root/ / # ports and volumes EXPOSE 8181 -VOLUME /config /downloads /music +VOLUME /config