From 02b6e20cde1345bb883799a318b409eae29d510b Mon Sep 17 00:00:00 2001 From: Salvatore Mesoraca Date: Thu, 1 Aug 2024 13:56:46 +0200 Subject: [PATCH] s/docker-compose/docker compose/ GitHub runners started to fail randomly because of docker-compose Signed-off-by: Salvatore Mesoraca --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index ff1466bc..046cf18b 100644 --- a/tasks.py +++ b/tasks.py @@ -13,7 +13,7 @@ def devenv(c): """Brings up the test environment, by wrapping docker compose.""" clean(c) - cmd = "docker-compose --profile all up -d" + cmd = "docker compose --profile all up -d" run(cmd) @@ -85,7 +85,7 @@ def clean(c): shutil.rmtree("build") if os.path.isdir("dist"): shutil.rmtree("dist") - run("docker-compose --profile all rm -s -f") + run("docker compose --profile all rm -s -f") @task