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
a193222fb7
commit
d3d89df55a
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