Skip to content

Commit

Permalink
Update docker compose command
Browse files Browse the repository at this point in the history
  • Loading branch information
gilberthl-mh committed Jun 13, 2024
1 parent efed62e commit 460cfcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/navy/src/drivers/docker-compose/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function createComposeClient(navy: Navy): ComposeClient {
composeArgs.push(command, ...args)

try {
return await execAsync('docker-compose', composeArgs, childProcess => {
return await execAsync('docker compose', composeArgs, childProcess => {
if (!noLog && !pipeLog) {
childProcess.stdout.on('data', data => log(data))
childProcess.stderr.on('data', data => log(data))
Expand Down

0 comments on commit 460cfcb

Please sign in to comment.