On remote connect failure, docker erronously refers to "docker.example.com"
ilsaloving opened this issue · 2 comments
Description
When trying to connect to a remote host, and the connection fails for whatever reason, it returns the error:
Error pinging Docker server: Cannot connect to the Docker daemon at http://docker.example.com. Is the docker daemon running?
I spent way too much time trying to figure out why docker was trying to connect to docker.example.com instead of my desired host, not realizing someone had just been lazy and chose not to write a proper error message.
Reproduce
- Set DOCKER_HOST to a valid server you can login to but doesn't have docker installed. eg: ssh://user@myserver.local
- Use any docker cli command, or the python library, to interact with docker
Expected behavior
No response
docker version
Client: Docker Engine - Community
Version: 27.3.1
API version: 1.47
Go version: go1.22.7
Git commit: ce12230
Built: Fri Sep 20 11:40:59 2024
OS/Arch: linux/amd64
Context: default
docker info
Client: Docker Engine - Community
Version: 27.3.1
Context: default
Debug Mode: false
Plugins:
buildx: Docker Buildx (Docker Inc.)
Version: v0.17.1
Path: /usr/libexec/docker/cli-plugins/docker-buildx
Additional Info
No response
Thanks for reporting
not realizing someone had just been lazy and chose not to write a proper error message.
Someone here is the Go stdlibrary 😂
A bit more context;
This error is produced by the go stdlib; the reason you get the docker.example.com
domain to show up is that this part of the Go stdlib requires a validly formed host name to be set. I think at the time, the example.com
domain was used for this (which is one of the designated special-purpose domains; https://www.rfc-editor.org/rfc/rfc6761.html) for the event where the domain would actualy be handled, it wouldn't be calling home or connecting to some other domain.
We recently had to add a similar "dummy" domain to the client code, after a breaking change in Go's stdlib forced a dummy domain to be used for other purposes. For that case we chose api.moby.localhost
; we could probably use the same for this case; the code-comment outlines some of the technical details;
cli/vendor/github.com/docker/docker/client/client.go
Lines 65 to 93 in 917d2dc
I'm not 100% sure if we'd be able to fully rewrite the error-message, other than through string-matching, which may be too brittle (but it's worth looking into)
If you can't rewrite it, can you at least wrap it to include the hostname that the user actually provided?