Skip to content

Commit

Permalink
feat(standalone): pipe docker stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
redallen committed Jul 22, 2021
1 parent 5577c33 commit 440c2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/config-utils/standalone/startService.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function startService(services, name, subService) {
}

// Start container
execSync(`docker run --detach --name ${name} --network ${NET} --pull always ${args}`);
execSync(`docker run --detach --name ${name} --network ${NET} --pull always ${args}`, { stdio: 'inherit' });
}

function stopService(name) {
Expand Down

0 comments on commit 440c2e7

Please sign in to comment.