79700566

Date: 2025-07-14 08:01:15
Score: 0.5
Natty:
Report link

With docker compose build , the default BuildKit UI hides those details.

Even if BuildKit is enabled by default in modern Docker versions and docker-compose, but you can turn it off to get the traditional verbose output with hashes.

Run the build with this env var (which will disable BuildKit and show the intermediate hashes)

DOCKER_BUILDKIT=0 docker-compose build

See also: How to enable/disable buildkit in docker?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Looks like a comment (1):
  • High reputation (-2):
Posted by: aran