We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fbcab8b + a9cf4cf commit a0b2b54Copy full SHA for a0b2b54
cmd/depot/main.go
@@ -27,8 +27,10 @@ import (
27
)
28
29
func main() {
30
- // Explicitly set the Docker API version to 1.48 to avoid the Docker daemon breaking change.
31
- os.Setenv("DOCKER_API_VERSION", "1.48")
+ // Explicitly set the Docker API version to 1.44 to avoid the Docker daemon breaking change.
+ if os.Getenv("DOCKER_API_VERSION") == "" {
32
+ os.Setenv("DOCKER_API_VERSION", "1.44")
33
+ }
34
35
if os.Getenv("DEPOT_DISABLE_OTEL") != "" {
36
helpers.DisableOTEL()
0 commit comments