Skip to content

Commit

Permalink
Updated commands from docker-compose to docker compose (#3352)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladvildanov committed Aug 9, 2024
1 parent fb74aa2 commit 1cbb97e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 1cbb97e

Please sign in to comment.