Merge pull request #6914 from lukas9393/6913-progress-arg

Fix --progress arg when run docker-compose build
This commit is contained in:
Ulysses Souza 2019-10-07 12:28:49 +02:00 committed by GitHub
commit 186aa6e5c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1787,7 +1787,7 @@ class _CLIBuilder(object):
command_builder.add_flag("--force-rm", forcerm)
command_builder.add_arg("--memory", container_limits.get("memory"))
command_builder.add_flag("--no-cache", nocache)
command_builder.add_flag("--progress", self._progress)
command_builder.add_arg("--progress", self._progress)
command_builder.add_flag("--pull", pull)
command_builder.add_arg("--tag", tag)
command_builder.add_arg("--target", target)