I'm trying to test from one machine on my LAN via PowerShell, whether or not the Docker Desktop Daemon (Win 10) is running on another machine on my LAN.
I'm using the latest version of Docker Desktop (Edge release):
For my testing, I've checked the "Expose (yada yada yada)" option.
When I run:
Invoke-WebRequest -Method 'HEAD' "http://192.168.0.194:2375/v1.40/_ping"
I get:
Invoke-WebRequest : Unable to connect to the remote server At line:1 char:1
Invoke-WebRequest -Method 'HEAD' "http://192.168.0.194:2375/v1.40/_pi ...
CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-WebRequest], WebException
FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand
Using 'GET'
results in the same.
I'm basing it on this reference:
https://docs.docker.com/engine/api/v1.40/#operation/SystemPing
Any idea anyone?