From 3a4563d7557df423fc89ffe9f9c872b69be5abb8 Mon Sep 17 00:00:00 2001 From: Lazalatin Date: Fri, 16 Sep 2022 22:18:32 +0200 Subject: [PATCH] :bug: Fix doubled quotes in frontend config Docker parses environment variables literally, delivering quoted flags in the $PENPOT_FLAGS variable. This in turn leads to doubled quotes in the resulting config.js in front and after the flags, omitting them completely. This commit fixes this behaviour. --- docker/images/config.env | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/images/config.env b/docker/images/config.env index 5da4a1939..7744ded6e 100644 --- a/docker/images/config.env +++ b/docker/images/config.env @@ -8,8 +8,7 @@ PENPOT_PUBLIC_URI=http://localhost:9001 ## Feature flags. - -PENPOT_FLAGS="enable-registration enable-login disable-email-verification" +PENPOT_FLAGS=enable-registration enable-login disable-email-verification ## Temporal workaround because of bad builtin default