From 242e6ba12e1bc67e2f00eb467e1e5583522b3e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Wed, 19 Aug 2020 14:55:33 +0000 Subject: [PATCH] Automated changelog update [skip ci] --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a0c49699b..731d50a735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Summary +* Bugfix - Add missing env vars to docker compose: [#392](https://github.com/owncloud/ocis/pull/392) * Bugfix - Build docker images with alpine:latest instead of alpine:edge: [#416](https://github.com/owncloud/ocis/pull/416) * Change - Add the thumbnails command: [#156](https://github.com/owncloud/ocis/issues/156) * Change - Integrate import command from ocis-migration: [#249](https://github.com/owncloud/ocis/pull/249) @@ -28,6 +29,14 @@ ## Details +* Bugfix - Add missing env vars to docker compose: [#392](https://github.com/owncloud/ocis/pull/392) + + Without setting `REVA_FRONTEND_URL` and `REVA_DATAGATEWAY_URL` uploads would default to + locahost and fail if `OCIS_DOMAIN` was used to run ocis on a remote host. + + https://github.com/owncloud/ocis/pull/392 + + * Bugfix - Build docker images with alpine:latest instead of alpine:edge: [#416](https://github.com/owncloud/ocis/pull/416) ARM builds were failing when built on alpine:edge, so we switched to alpine:latest instead.