Skip to content

Commit

Permalink
Replace docker-compose binary usage by docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
triole committed Mar 12, 2024
1 parent bd745b9 commit 087c051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run_compose(self, args):
cmd_arr = []
if self.need_sudo is True:
cmd_arr.append("sudo")
cmd_arr.append("docker-compose")
cmd_arr.extend(["docker", "compose"])
cmd_arr.extend(self.file_arg_compose())
cmd_arr.extend(args)
self.run_cmd_fg(cmd_arr)
Expand Down

0 comments on commit 087c051

Please sign in to comment.