From 054d420dc97cadee6ed7896c608d95a6fe09dc9d Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 11 Jul 2022 17:02:05 +0300 Subject: [PATCH] On CentOS 7 Docker there is seccomp issue with glibc 6, so setting it to unconfined to get WeKan working. Thanks to m-brangeon ! Related #4585, related #4587 --- docker-compose.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 909c3461b..6468b075f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -127,6 +127,12 @@ services: # image: wekanteam/wekan #------------------------------------------------------------------------------------- container_name: wekan-app + # On CentOS 7 there is seccomp issue with glibc 6, so setting it to unconfined + # to get WeKan working. See: + # - https://github.com/wekan/wekan/issues/4585 + # - https://github.com/wekan/wekan/issues/4587 + security_opt: + - seccomp:unconfined restart: always networks: - wekan-tier