RHEL/Centos docker daemon differs from the official one.
You can compare dockerd --help
with dockerd-ce --help
.
Main difference for me is --add-registry
parameter,
which is not supported by CE and official dockerd daemons.
This image is based on the official dind and it must be fully compatible with it.
Please watch official dind image. If you new to DIND, then please use official dind .
You need this alternative dind distribution only if you know what you doing!
$ docker run --privileged --name dind -d \
-p -p 2375:2375 \
-v dind-storage:/var/lib/docker \
kran0/dind-centos:latest --add-registry registry.company.name:5000
Repository:Tag | Build description |
---|---|
kran0/dind-centos:latest | latest dockerd with the latest Dockerfile |
kran0/dind-centos:1.13.1-96.gitb2f74b2 | previously released tagged dockerd |