Docker not working on win2k16

This appears to be a networking problem. Have you tried the networking clean-up scripts? https://github.com/Microsoft/Virtualization-Documentation/tree/master/windows-server-container-tools/CleanupContainerHostNetworking

Hi, I did, then stopped and restarted docker service it did not help

Hi everybody, any feedback or help on this, I need really now to move and validate containers on win2K16 with my client/

Hi, I tried the same way configuring company proxy server inside powershell. But it still did not work.

Hi, How would I revert back this settings? After setting, I am getting this error

docker: Error response from daemon: Get https://registry-1.docker.io/v2/: proxyconnect tcp: dial tcp: lookup https: no such host.
See ‘docker run --help’.

You may have a backup of your daemon.json in C:\ProgramData\Docker\tmp-d4w\daemon.json or possibly $env:USERPROFILE.docker

I’m guessing you’re using an HTTPS_PROXY setup?

When running inside a LAN that uses an HTTPS proxy, the Docker Hub certificates will be replaced by the proxy’s certificates. These certificates need to be added to your Docker host’s configuration:

Install the ca-certificates package for your distribution
Ask your network admin for the proxy’s CA certificate and append them to /etc/pki/tls/certs/ca-bundle.crt
Then start your Docker daemon with HTTPS_PROXY=http://username:password@proxy:port/ dockerd. The username: and password@ are optional - and are only needed if your proxy is set up to require authentication.

This will only add the proxy and authentication to the Docker daemon’s requests - your docker builds and running containers will need extra configuration to use the proxy