Question
Enable "progress plain" in docker-compose file
When I run a build using docker-compose build --progress plain
, it shows more useful information during the build than the default BuildKit output.
Is there a way to embed the plain progress option into the docker-compose.yml file itself so I can just call docker-compose build
and still get the better output?
I tried adding these build args, but none of them seemed to work:
build:
args:
#progress: plain
#- progress=plain
#- progress plain
#BUILDKIT_PROGRESS: plain
#- BUILDKIT_PROGRESS=plain