From ef5deb7a0ccf988eb34ebb17567847137bfac042 Mon Sep 17 00:00:00 2001 From: Jameel Al-Aziz Date: Sun, 27 Oct 2019 18:41:04 -0700 Subject: [PATCH] Remove extra volumes from the Dockerfile 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 c02cc07..4e2ab60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,4 +42,4 @@ COPY /root / # ports and volumes EXPOSE 7878 -VOLUME /config /downloads /movies +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 12f4917..6c87b28 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -42,4 +42,4 @@ COPY /root / # ports and volumes EXPOSE 7878 -VOLUME /config /downloads /movies +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f1e8df4..811b03c 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -42,4 +42,4 @@ COPY /root / # ports and volumes EXPOSE 7878 -VOLUME /config /downloads /movies +VOLUME /config