Skip to content

Commit

Permalink
Docker Compose v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Burmak committed Apr 17, 2024
1 parent bd6a838 commit dcc6897
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ pytest
PyHamcrest
hypothesis
behave
docker<8.0
docker-compose<1.28
websocket-client<2.0 # required for docker-compose<1.28
docker
Jinja2
deepdiff<7.1.0
2 changes: 1 addition & 1 deletion tests/integration/modules/compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def _call_compose(conf: dict, *, command: str, project_name: str = None) -> None
"""
Execute docker-compose action by invoking `docker-compose`.
"""
shell_command = f"docker-compose --file {_config_path(conf)}"
shell_command = f"docker compose --file {_config_path(conf)}"
if project_name:
shell_command += f" -p {project_name}"
shell_command += f" {command}"
Expand Down

0 comments on commit dcc6897

Please sign in to comment.