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.
This commit is contained in:
artbird309 2020-11-13 08:40:24 -05:00 committed by Ryan Kuba
parent c3570c62e8
commit 17f4f33602
3 changed files with 3 additions and 3 deletions

View file

@ -51,4 +51,4 @@ COPY root/ /
# ports and volumes # ports and volumes
EXPOSE 8181 EXPOSE 8181
VOLUME /config /downloads /music VOLUME /config

View file

@ -51,4 +51,4 @@ COPY root/ /
# ports and volumes # ports and volumes
EXPOSE 8181 EXPOSE 8181
VOLUME /config /downloads /music VOLUME /config

View file

@ -51,4 +51,4 @@ COPY root/ /
# ports and volumes # ports and volumes
EXPOSE 8181 EXPOSE 8181
VOLUME /config /downloads /music VOLUME /config