Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add volume to docker image #1375

Merged
merged 3 commits into from
Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions changelog/unreleased/docker_image_volume.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Change: Add "volume" declaration to docker images

Tags: docker

Add "volume" declaration to docker images. This makes it easier for Docker users to see where oCIS stores data.

https://github.com/owncloud/ocis/pull/1375
2 changes: 2 additions & 0 deletions ocis/docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ ENTRYPOINT ["/usr/bin/ocis"]
CMD ["server"]

COPY bin/ocis /usr/bin/ocis

VOLUME [ "/var/tmp/ocis" ]
2 changes: 2 additions & 0 deletions ocis/docker/Dockerfile.linux.arm
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ ENTRYPOINT ["/usr/bin/ocis"]
CMD ["server"]

COPY bin/ocis /usr/bin/ocis

VOLUME [ "/var/tmp/ocis" ]
2 changes: 2 additions & 0 deletions ocis/docker/Dockerfile.linux.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ ENTRYPOINT ["/usr/bin/ocis"]
CMD ["server"]

COPY bin/ocis /usr/bin/ocis

VOLUME [ "/var/tmp/ocis" ]