Skip to content

Commit

Permalink
Update volume in Dockerfiles (minio#5646)
Browse files Browse the repository at this point in the history
All sample commands in Minio docs use the volume path as /data.
Updated the dockerfiles to follow the same pattern.

Fixes minio#5635
  • Loading branch information
nitisht authored Mar 14, 2018
1 parent e8d8360 commit 6882467
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ EXPOSE 9000

ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]

VOLUME ["/export"]
VOLUME ["/data"]

HEALTHCHECK --interval=30s --timeout=5s \
CMD /usr/bin/healthcheck.sh
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ EXPOSE 9000

ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]

VOLUME ["/export"]
VOLUME ["/data"]

HEALTHCHECK --interval=30s --timeout=5s \
CMD /usr/bin/healthcheck.sh
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ EXPOSE 9000

ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]

VOLUME ["/export"]
VOLUME ["/data"]

HEALTHCHECK --interval=30s --timeout=5s \
CMD /usr/bin/healthcheck.sh
Expand Down

0 comments on commit 6882467

Please sign in to comment.