From 5497c3835f6b5f07cca57ee4eb2c6980a0e047c0 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Mon, 2 Oct 2023 22:38:03 +0200 Subject: [PATCH] Fix runner --- hosting/single/runner.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosting/single/runner.sh b/hosting/single/runner.sh index d980202f88..9be1f6ce81 100644 --- a/hosting/single/runner.sh +++ b/hosting/single/runner.sh @@ -70,8 +70,8 @@ fi # Read in the .env file and export the variables for LINE in $(cat ${DATA_DIR}/.env); do export $LINE; done -ln -s ${DATA_DIR}/.env /app/.env -ln -s ${DATA_DIR}/.env /worker/.env +ln -s ${DATA_DIR}/.env /app/server/.env +ln -s ${DATA_DIR}/.env /app/worker/.env # make these directories in runner, incase of mount mkdir -p ${DATA_DIR}/minio chown -R couchdb:couchdb ${DATA_DIR}/couch