Cloud API Overview > @adpt/cloud > docker > ImageRefData > dockerHost
docker.ImageRefData.dockerHost property
Docker host string to contact the Docker daemon where this image is located.
Signature:
dockerHost?: "default" | string;
Remarks
This should be in the same format that Docker expects for the DOCKER_HOST
environment variable. The special string default
can also be used, which will use the current value of the DOCKER_HOST
environment variable, if it is set and will otherwise use the default named pipe on Windows (npipe:///./pipe/docker_engine
) and the default socket on other systems (unix:///var/run/docker.sock
).