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 {
272
272
projectContainers . push ( service . container_name as string )
273
273
}
274
274
}
275
- const running = execSync ( this . dockerBin + ' ps --quiet -- format={{.Names}}' ) . toString ( )
275
+ const running = execSync ( this . dockerBin + ' ps --format={{.Names}}' ) . toString ( )
276
276
const runningContainers = running . split ( '\n' ) . filter ( item => {
277
277
if ( item . length === 0 ) {
278
278
return false
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export default class CleanCmd extends BaseCmd {
44
44
* Prompts for user.
45
45
*/
46
46
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 ( )
48
48
const containerNames = containers . split ( '\n' ) . filter ( item => {
49
49
return ( item . length > 0 )
50
50
} )
You can’t perform that action at this time.
0 commit comments