Docker Windows - can't run as root, so can't download container Hello World

Hi - new to Docker. I’m running on my company laptop, upon which I am not root, and the proxy is not set up to connect to the docker hub. How can I find out what port docker is using to try to download the Hello World container form docker hub so that I can fix my proxy (or the port), and set up a sudo root for that port? Thanks!

Is there actually such a thing as root on Windows?

It’s actually the admin account. I should have been more clear.

I think it just connects on 443. You could try setting a machine level environment variable with the value of your proxy.

In Powershell:
[Environment]::SetEnvironmentVariable(“HTTP_PROXY”, “http://username:password@proxy:port/”, [EnvironmentVariableTarget]::Machine)

Unfortunately, I’m not sure if that will work if you are not local admin.