From bbab27ff3c16f86c0e2af92de06af3e9b933b090 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Fri, 15 Sep 2023 01:04:37 +0100 Subject: [PATCH] simplifies dev compose and removes bad redis command - was no longer working since other containers try to use credentials --- docker-compose.dev.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 3dfa717..cb51d8d 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -2,10 +2,15 @@ version: '3.8' services: web: + restart: "no" environment: - SERVE_LOCAL_ARCHIVE=/app/local_archive # See orchestration.yaml local_storage.save_to - ALLOWED_ORIGINS=http://localhost:8004 + + worker: + restart: "no" + redis: - command: redis-server /conf/redis.conf + restart: "no" ports: - 6379:6379