From 354cc920696924c98070480df0a8619e547a5ee7 Mon Sep 17 00:00:00 2001 From: vladvildanov Date: Fri, 9 Aug 2024 14:57:11 +0300 Subject: [PATCH] Updated commands from docker-compose to docker compose --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index 0fef093f3c..76737b8eff 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 --build" + cmd = "docker compose --profile all up -d --build" 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