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 Aug 22, 2023
1 parent e90dbde commit aae1428
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 @@ -14,9 +14,7 @@ pytest
PyHamcrest==2.0.0
hypothesis
behave
docker<5.0
docker-compose<1.28
websocket-client<1.0 # required for docker-compose<1.28
docker
Jinja2
deepdiff<5.8
mypy-boto3-s3==1.21.7 # this is the last version that requires typing-extensions<4.0.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 aae1428

Please sign in to comment.