From 41b26a3eb7eb5cea9a4f9df412ad8350a8d7a6f4 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Thu, 12 Aug 2021 15:06:46 +0200 Subject: [PATCH] add changelog --- changelog/unreleased/docker-image-non-root-user.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 changelog/unreleased/docker-image-non-root-user.md diff --git a/changelog/unreleased/docker-image-non-root-user.md b/changelog/unreleased/docker-image-non-root-user.md new file mode 100644 index 0000000000..fae6806702 --- /dev/null +++ b/changelog/unreleased/docker-image-non-root-user.md @@ -0,0 +1,7 @@ +Enhancement: Use non root user for the owncloud/ocis docker image + +The owncloud/ocis docker image now uses a non root user and enables you to set a different user with the docker `--user` parameter. The default user has the UID 1000 is part of a group with the GID 1000. + +This is a breaking change for existing docker deployments. The permission on the files and folders in persistent volumes need to be changed to the UID and GID used for oCIS (default 1000:1000 if not changed by the user). + +https://github.com/owncloud/ocis/pull/2380