Fix --progress arg when run docker-compose build

--progress is no longer processed as flag but as argument with value.

Signed-off-by: Lukas Hettwer <lukas.hettwer@aboutyou.de>

Resolve: [#6913]
This commit is contained in:
Lukas Hettwer 2019-09-24 16:02:12 +02:00
parent d7c7e21921
commit 32ac6edb86
No known key found for this signature in database
GPG Key ID: DEF6C8806F5980C4

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)