From d18788ffde1f4b577bd548d76afb443a593cc0d4 Mon Sep 17 00:00:00 2001 From: Steven Nguyen Date: Fri, 8 Sep 2023 12:08:18 -0700 Subject: [PATCH] Add _APP_OPENSSL_KEY_V1 to the compose file The appwrite-schedules container fetches functions and needs the openssl key to decrypt function variables. Without this, the variables may end up being false. --- app/views/install/compose.phtml | 1 + docker-compose.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/app/views/install/compose.phtml b/app/views/install/compose.phtml index 4c07d606f..2fca03a04 100644 --- a/app/views/install/compose.phtml +++ b/app/views/install/compose.phtml @@ -615,6 +615,7 @@ services: environment: - _APP_ENV - _APP_WORKER_PER_CORE + - _APP_OPENSSL_KEY_V1 - _APP_REDIS_HOST - _APP_REDIS_PORT - _APP_REDIS_USER diff --git a/docker-compose.yml b/docker-compose.yml index 58feb4a62..bd04c8a79 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -671,6 +671,7 @@ services: environment: - _APP_ENV - _APP_WORKER_PER_CORE + - _APP_OPENSSL_KEY_V1 - _APP_REDIS_HOST - _APP_REDIS_PORT - _APP_REDIS_USER