diff --git a/tasks.py b/tasks.py index 1a82727..f79d6c2 100644 --- a/tasks.py +++ b/tasks.py @@ -59,6 +59,6 @@ def deploy(app_name: str, compose_file="docker-compose.yml", dirs=None): f"docker-compose --project-name {shlex.quote(app_name)} --env-file=.env.prod up --detach --remove-orphans" ) c.run( - f"docker system prune --volumes --force" + f"docker system prune --all --volumes --force" ) print("Done.")