We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c0178 commit d258822Copy full SHA for d258822
tasks.py
@@ -13,7 +13,7 @@
13
def devenv(c):
14
"""Brings up the test environment, by wrapping docker compose."""
15
clean(c)
16
- cmd = "docker-compose --profile all up -d --build"
+ cmd = "docker compose --profile all up -d --build"
17
run(cmd)
18
19
@@ -85,7 +85,7 @@ def clean(c):
85
shutil.rmtree("build")
86
if os.path.isdir("dist"):
87
shutil.rmtree("dist")
88
- run("docker-compose --profile all rm -s -f")
+ run("docker compose --profile all rm -s -f")
89
90
91
@task
0 commit comments