From a2d1683f58d20a642cc134589edaf529c9e6fd52 Mon Sep 17 00:00:00 2001 From: artbird309 Date: Thu, 12 Nov 2020 19:30:33 -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 b072351..e8335fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -112,4 +112,4 @@ COPY root/ / # ports and volumes EXPOSE 8337 -VOLUME /config /downloads /music +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 4abd780..477d5ea 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -112,4 +112,4 @@ COPY root/ / # ports and volumes EXPOSE 8337 -VOLUME /config /downloads /music +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index d153bf3..b4b683f 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -112,4 +112,4 @@ COPY root/ / # ports and volumes EXPOSE 8337 -VOLUME /config /downloads /music +VOLUME /config