Skip to content

Commit

Permalink
Merge branch 'master' into add_volume_docker_image
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek authored Jan 21, 2021
2 parents f21af25 + afe098e commit 833d0e4
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The following sections list the changes for unreleased.
## Summary

* Change - Disable pretty logging by default: [#1133](https://github.com/owncloud/ocis/pull/1133)
* Change - Add "expose" information to docker images: [#1366](https://github.com/owncloud/ocis/pull/1366)
* Change - Generate cryptographically secure state token: [#1203](https://github.com/owncloud/ocis/pull/1203)
* Change - Move k6 to cdperf: [#1358](https://github.com/owncloud/ocis/pull/1358)
* Change - Update go version: [#1364](https://github.com/owncloud/ocis/pull/1364)
Expand All @@ -26,6 +27,15 @@ The following sections list the changes for unreleased.

https://github.com/owncloud/ocis/pull/1133

* Change - Add "expose" information to docker images: [#1366](https://github.com/owncloud/ocis/pull/1366)

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

* Change - Generate cryptographically secure state token: [#1203](https://github.com/owncloud/ocis/pull/1203)

Replaced Math.random with a cryptographically secure way to generate the oidc state token
Expand Down
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 <devops@owncloud.com>" \
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 <devops@owncloud.com>" \
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 <devops@owncloud.com>" \
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 833d0e4

Please sign in to comment.