From 7bdaef768d8a3001b44507d4653f8c4214638b9b Mon Sep 17 00:00:00 2001 From: Vladyslav Vildanov <117659936+vladvildanov@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:13:43 +0300 Subject: [PATCH] Updated commands from docker-compose to docker compose (#3352) --- 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