Skip to content

Commit c6620b5

Browse files
committed
Remove progress information from docker-compose pull
1 parent e0b94d0 commit c6620b5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

internal/compose/compose.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,9 @@ func (p *Project) Config(opts CommandOptions) (*Config, error) {
277277
func (p *Project) Pull(opts CommandOptions) error {
278278
args := p.baseArgs()
279279
args = append(args, "pull")
280+
if p.disableANSI {
281+
args = append(args, "--quiet")
282+
}
280283
args = append(args, opts.ExtraArgs...)
281284
args = append(args, opts.Services...)
282285

0 commit comments

Comments
 (0)