File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,15 +92,15 @@ func validateDockerImage(image string, verbose bool) error {
9292 _ , err := exec .LookPath ("docker" )
9393 if err != nil {
9494 dockerValidationLog .Print ("Docker not installed, cannot validate image" )
95- return fmt .Errorf ("Docker not installed - could not validate container image '%s'. Install Docker or remove container-based tools" , image )
95+ return fmt .Errorf ("docker not installed - could not validate container image '%s'. Install Docker or remove container-based tools" , image )
9696 }
9797
9898 // Check if Docker daemon is actually running (cached check with short timeout).
9999 // This prevents multi-minute hangs when Docker Desktop is installed but not running,
100100 // which is common on macOS development machines.
101101 if ! isDockerDaemonRunning () {
102102 dockerValidationLog .Print ("Docker daemon not running, cannot validate image" )
103- return fmt .Errorf ("Docker daemon not running - could not validate container image '%s'. Start Docker Desktop or remove container-based tools" , image )
103+ return fmt .Errorf ("docker daemon not running - could not validate container image '%s'. Start Docker Desktop or remove container-based tools" , image )
104104 }
105105
106106 // Try to inspect the image (will succeed if image exists locally)
You can’t perform that action at this time.
0 commit comments