Docker pull won't work

Had the same problem on a colleagues machine. Unable to pull images.

Did as some have suggested however it didn’t work.

  1. Disabled IPv6
  2. Set the on the DocketNAT interface to 8.8.8.8 and 8.8.4.4

I then checked to make sure NAT was working ok. Turns out the NAT object had disappeared. You can check this by using the “Get-NetNat” cmdlet in powershell.

Once I created it manually I was able to pull images again.

New-NetNat –Name “DocketNAT” –InternalIPInterfaceAddressPrefix “10.0.75.0/24”

Hope this is helpful to anyone else that’s having this problem lately. Will hopefully get to submit a proper bug report sometime today with my findings when I get some time.

S

2 Likes