Skip to content

Commit

Permalink
add expose to docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek authored and phil-davis committed Jan 21, 2021
1 parent 27d1783 commit 1a18a49
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions changelog/unreleased/expose-docker-image
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Change: Add "expose" information to docker images

Tags: docker

Add "expose" information to docker images. Docker users will now see that we offer services on port 9200.

https://github.com/owncloud/ocis/pull/1366
2 changes: 2 additions & 0 deletions ocis/docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ LABEL maintainer="ownCloud GmbH <[email protected]>" \
org.label-schema.vendor="ownCloud GmbH" \
org.label-schema.schema-version="1.0"

EXPOSE 9200/tcp

ENTRYPOINT ["/usr/bin/ocis"]
CMD ["server"]

Expand Down
2 changes: 2 additions & 0 deletions ocis/docker/Dockerfile.linux.arm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ LABEL maintainer="ownCloud GmbH <[email protected]>" \
org.label-schema.vendor="ownCloud GmbH" \
org.label-schema.schema-version="1.0"

EXPOSE 9200/tcp

ENTRYPOINT ["/usr/bin/ocis"]
CMD ["server"]

Expand Down
2 changes: 2 additions & 0 deletions ocis/docker/Dockerfile.linux.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ LABEL maintainer="ownCloud GmbH <[email protected]>" \
org.label-schema.vendor="ownCloud GmbH" \
org.label-schema.schema-version="1.0"

EXPOSE 9200/tcp

ENTRYPOINT ["/usr/bin/ocis"]
CMD ["server"]

Expand Down

0 comments on commit 1a18a49

Please sign in to comment.