From 1215c3767b1f59d137dbe52419a45a312a029f8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yeifer=20Mu=C3=B1oz?= Date: Thu, 30 May 2024 02:00:27 -0500 Subject: [PATCH] chore: use default blank values for db and redis variables in compose.yaml --- compose.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compose.yaml b/compose.yaml index 7db390c7..1f3987f3 100644 --- a/compose.yaml +++ b/compose.yaml @@ -33,10 +33,10 @@ services: bench set-config -g redis_socketio "redis://$$REDIS_QUEUE"; bench set-config -gp socketio_port $$SOCKETIO_PORT; environment: - DB_HOST: ${DB_HOST} - DB_PORT: ${DB_PORT} - REDIS_CACHE: ${REDIS_CACHE} - REDIS_QUEUE: ${REDIS_QUEUE} + DB_HOST: ${DB_HOST:-} + DB_PORT: ${DB_PORT:-} + REDIS_CACHE: ${REDIS_CACHE:-} + REDIS_QUEUE: ${REDIS_QUEUE:-} SOCKETIO_PORT: 9000 depends_on: {}