Remove extra volume from the Dockerfiles

Specifying the volume 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:53:29 -05:00
parent 5e55ca56b6
commit de569ddd8a
3 changed files with 3 additions and 3 deletions

View File

@ -69,4 +69,4 @@ COPY root/ /
# ports and volumes
EXPOSE 8083
VOLUME /books /config
VOLUME /config

View File

@ -83,4 +83,4 @@ COPY root/ /
# ports and volumes
EXPOSE 8083
VOLUME /books /config
VOLUME /config

View File

@ -83,4 +83,4 @@ COPY root/ /
# ports and volumes
EXPOSE 8083
VOLUME /books /config
VOLUME /config