Skip to content

Commit 1cbb97e

Browse files
authored
Updated commands from docker-compose to docker compose (#3352)
1 parent fb74aa2 commit 1cbb97e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
def devenv(c):
1414
"""Brings up the test environment, by wrapping docker compose."""
1515
clean(c)
16-
cmd = "docker-compose --profile all up -d --build"
16+
cmd = "docker compose --profile all up -d --build"
1717
run(cmd)
1818

1919

@@ -85,7 +85,7 @@ def clean(c):
8585
shutil.rmtree("build")
8686
if os.path.isdir("dist"):
8787
shutil.rmtree("dist")
88-
run("docker-compose --profile all rm -s -f")
88+
run("docker compose --profile all rm -s -f")
8989

9090

9191
@task

0 commit comments

Comments
 (0)