When using BuildKit with Docker, how do I see the output of RUN commands?

Have you tried –progress=plain? Example: FROM alpine RUN ps aux Relative output of DOCKER_BUILDKIT=1 docker build –progress=plain -t test_buildkit .: #5 [2/2] RUN ps aux #5 digest: sha256:e2e4ae1e7db9bc398cbcb5b0e93b137795913d2b626babb0f148a60017379d86 #5 name: “[2/2] RUN ps aux” #5 started: 2019-04-19 09:02:58.922035874 +0000 UTC #5 0.693 PID USER TIME COMMAND #5 0.693 1 root 0:00 ps aux #5 completed: … Read more