Docker:dind stops working after 12.1.0 update

Hello, you can fix it temporary by using this:

services:
    - name: docker:dind
      entrypoint: ["env", "-u", "DOCKER_HOST"]
      command: ["dockerd-entrypoint.sh"]
  variables:
    DOCKER_HOST: tcp://docker:2375/
    DOCKER_DRIVER: overlay2
    # See https://github.com/docker-library/docker/pull/166
    DOCKER_TLS_CERTDIR: ""

https://gitlab.com/gitlab-org/gitlab-runner/issues/4566#note_199261985

6 Likes