I recently updated the verison of docker I’m using; I’m currently running docker-ce 5:28.3.3-1~debian.12~bookworm and docker-buildx-plugin 0.26.1-1~debian.12~bookworm
When I run docker compose build, I get no running output on the terminal. Adding BUILDKIT_PROGRESS=plainto the beginning of the command doesn’t change anything. After a while, the terminal command ends, and the docker images are built. So, the build is working, I’m just not getting any output while it’s building, and given that the build can take minutes, it would be nice to have some log of what’s going on so I have confidence that things are still on track.
Previously, when I ran docker compose build, it would give me the running output of which build stage it was on and the output of any RUN commands during the build. Those would be in updating lines with few-line “windows” on the terminal normally, or a full scrolling terminal log with BUILDKIT_PROGRESS=plain .
I don’t know what changed. I supsect there’s some setting somewhere that’s affected the output that I’m showing, but I haven’t been able to figure out from the documentation what config files or what setting in those config files I should be looking for.