Still bad.
This time, the whole stuff is very short :
I put “No Proxy” in the docker Gui Settings
Create the gitlab container :
docker volume create gitlab-logs
docker volume create gitlab-data
docker volume create gitlab-conf
docker run --detach --name gitlab --hostname gitlab.mod --publish 4443:443 --publish 4480:80 --publish 8222:22 --volume gitlab-conf:/etc/gitlab --volume gitlab-logs:/var/log/gitlab --volume gitlab-data:/var/opt/gitlab gitlab/gitlab-ee
Create the runner
docker volume create gitlab-runner-conf
docker run -d --name gitlab-runner -v gitlab-runner-conf:/etc/gitlab-runner gitlab/gitlab-runner:latest
Declare my ssh key in gitlab
Register the runner
docker run --rm -t -i -v gitlab-runner-conf:/etc/gitlab-runner gitlab/gitlab-runner register --url "http://155.180.54.59:4480/" --registration-token "AzJWN68isYy6pcyMaz1v" --description "Runner des tests unitaires" --executor "docker" --docker-host "tcp://10.0.75.1" --docker-image alpine:latest --docker-services postgres:latest --non-interactive
(I tried --url=“http://localhost:4480” to be completely disconnected but it didn’t work)
Then I created a new project where I add a .gitlab-ci.yml file with
variables:
HELLO: World
DOCKER_HOST: tcp://10.0.75.1
test:
script:
- docker version
add ., commit, push
and Still the /v1.25/info url error 
My docker info is (no http proxy setting) :
>docker info
Containers: 6
Running: 2
Paused: 0
Stopped: 4
Images: 133
Server Version: 18.09.2
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 9754871865f7fe2f4e74d43e2fc7ccd237edcbce
runc version: 09c8266bf2fcf9519a651b04ae54c967b9ab86ec
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.125-linuxkit
Operating System: Docker for Windows
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 1.934GiB
Name: linuxkit-00155ddad103
ID: YFXJ:3SUV:IYYE:NXN7:PIPX:THUR:ZTTH:QIOG:KAXK:Z55P:VAFX:AZPF
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): true
File Descriptors: 34
Goroutines: 56
System Time: 2020-01-20T14:29:45.1856985Z
EventsListeners: 1
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine
My docker version :
Client: Docker Engine - Community
Version: 18.09.2
API version: 1.39
Go version: go1.10.8
Git commit: 6247962
Built: Sun Feb 10 04:12:31 2019
OS/Arch: windows/amd64
Experimental: false
Server: Docker Engine - Community
Engine:
Version: 18.09.2
API version: 1.39 (minimum version 1.12)
Go version: go1.10.6
Git commit: 6247962
Built: Sun Feb 10 04:13:06 2019
OS/Arch: linux/amd64
Experimental: false
gitlab and gitlab-runner are in 12.6 version