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:
parent
c3570c62e8
commit
17f4f33602
3 changed files with 3 additions and 3 deletions
|
@ -51,4 +51,4 @@ COPY root/ /
|
|||
|
||||
# ports and volumes
|
||||
EXPOSE 8181
|
||||
VOLUME /config /downloads /music
|
||||
VOLUME /config
|
||||
|
|
|
@ -51,4 +51,4 @@ COPY root/ /
|
|||
|
||||
# ports and volumes
|
||||
EXPOSE 8181
|
||||
VOLUME /config /downloads /music
|
||||
VOLUME /config
|
||||
|
|
|
@ -51,4 +51,4 @@ COPY root/ /
|
|||
|
||||
# ports and volumes
|
||||
EXPOSE 8181
|
||||
VOLUME /config /downloads /music
|
||||
VOLUME /config
|
||||
|
|
Loading…
Add table
Reference in a new issue