When building a container during a Pulumi run, I g...
# general
f
When building a container during a Pulumi run, I get a lot of output from the docker run itself, which tends to swamp the output coming from Pulumi. Is there any way I can selectively hide that docker output?
1
1️⃣ 2
w
Yes you can build the docker ‘docker build --quiet’
s
Leaving this here for anybody who searches for this later: You can do this as Lior said, by adding an
extra_options=
to your
docker.DockerBuild
declaration. However, as of now,
docker buildx build
doesn't support
--quiet
😞 https://github.com/docker/buildx/issues/621