From ac455beac0ee1f3e07289e1f8f196ae1e2747128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Mon, 24 Jan 2022 09:07:49 +0000 Subject: [PATCH] Add quotes Non-string value found for env option. Ambiguous env options must be wrapped in quotes to avoid them being interpreted. Key: GITEA__mailer__ENABLED --- roles/docker/tasks/services/gitea.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/docker/tasks/services/gitea.yml b/roles/docker/tasks/services/gitea.yml index f22e6a9..0e0793e 100644 --- a/roles/docker/tasks/services/gitea.yml +++ b/roles/docker/tasks/services/gitea.yml @@ -21,7 +21,7 @@ VIRTUAL_PORT: "3000" LETSENCRYPT_HOST: "{{ gitea.domain }}" LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}" - GITEA__mailer__ENABLED: true + GITEA__mailer__ENABLED: "true" GITEA__mailer__FROM: "noreply@{{ gitea.domain }}" - GITEA__mailer__MAILER_TYPE: smtp + GITEA__mailer__MAILER_TYPE: "smtp" GITEA__security__LOGIN_REMEMBER_DAYS: "60"