File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ export default abstract class BaseCmd extends Command {
272272 projectContainers . push ( service . container_name as string )
273273 }
274274 }
275- const running = execSync ( this . dockerBin + ' ps --quiet -- format={{.Names}}' ) . toString ( )
275+ const running = execSync ( this . dockerBin + ' ps --format={{.Names}}' ) . toString ( )
276276 const runningContainers = running . split ( '\n' ) . filter ( item => {
277277 if ( item . length === 0 ) {
278278 return false
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export default class CleanCmd extends BaseCmd {
4444 * Prompts for user.
4545 */
4646 private containerChoice ( ) : Array < inquirer . Question > {
47- const containers = execSync ( this . dockerBin + ' ps -a --quiet -- format={{.Names}}' ) . toString ( )
47+ const containers = execSync ( this . dockerBin + ' ps -a --format={{.Names}}' ) . toString ( )
4848 const containerNames = containers . split ( '\n' ) . filter ( item => {
4949 return ( item . length > 0 )
5050 } )
You can’t perform that action at this time.
0 commit comments