From f9196fa246f2356fa63207936a37a84661ad9cc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A8r=20Kessels?= Date: Wed, 22 Jan 2025 13:24:11 +0100 Subject: [PATCH] chore: Ensure memcached is started before running migrations etc. Else they fail --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index f251eb32..d4b6adae 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -55,6 +55,8 @@ services: depends_on: db: condition: service_healthy + memcached: + condition: service_started ports: - "8000:8000"