From 77a9060c00aa560bbea001a63a0abc61ae4e1bba Mon Sep 17 00:00:00 2001 From: Stefan Saenger Date: Thu, 6 Aug 2026 11:12:25 +0200 Subject: [PATCH] fix(ci): remove DOCKER_TLS_CERTDIR to fix DinD connection failure DOCKER_TLS_CERTDIR forced the docker:28.4.0-dind service to listen on port 2376 with TLS, but DOCKER_HOST pointed to the non-TLS port 2375. This caused the docker client to loop forever with: Cannot connect to the Docker daemon at tcp://localhost:2375. Removing DOCKER_TLS_CERTDIR lets the daemon listen on 2375 again, matching DOCKER_HOST, restoring docker-in-docker connectivity. --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 59889d38..e2a71612 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,6 @@ variables: IMAGE: $CI_REGISTRY_IMAGE GIT_STRATEGY: clone DOCKER_DRIVER: overlay2 - DOCKER_TLS_CERTDIR: "/certs" DOCKER_HOST: tcp://localhost:2375 # ---------------------------------------------------------------------------