Docker compose: Get docker to show intermediate build layer hashes By default, Docker compose hides the intermediate build layer hashes. This makes debugging difficult. To get display of hashes after each build step, use the following: DOCKER_BUILDKIT=0 docker-compose build ....