Skip to content

Commit

Permalink
Use docker compose instead of docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicaj committed Jul 18, 2024
1 parent ea4bd87 commit 5506d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middlewared/middlewared/plugins/apps/compose_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ def compose_action(
raise CallError(f'Invalid action {action!r} for app {app_name!r}')

# TODO: We will likely have a configurable timeout on this end
cp = run(['docker-compose'] + compose_files + args, timeout=1200)
cp = run(['docker', 'compose'] + compose_files + args, timeout=1200)
if cp.returncode != 0:
raise CallError(f'Failed {action!r} action for {app_name!r} app: {cp.stderr}')

0 comments on commit 5506d97

Please sign in to comment.