After configuring a Nexus docker registry and proxy "dockerhub-proxy" like described here :
I'm able to push images to the nexus registry after docker login but impossible to pull image from docker hub via the nexus proxy "dockerhub-proxy" and the error gives no details :
Error response from daemon: unknown: unknown
This is for a docker daemon client running on Docker Desktop Windows :
Version 2.0.0.3 (31259) Channel: stable Build: 8858db3 Engine: 18.09.2
I tried already from a Linux EC2 instance via docker client and it works well :
[root@ip-host-daemon docker]# docker pull ip_nexus_host:port_http_connector_nexus_proxy/mongo
Using default tag: latest
latest: Pulling from mongo
Digest: sha256:29d7ca01f9b7e3812a831ff143620e93ddf5e34bb9ac672d91140e064158a0fc
Status: Downloaded newer image for ip_nexus_host:port_http_connector_nexus_proxy/mongo:latest
I have no idea why on windows it does not work
PS C:\Dev\workspace> docker push my_dns/nexus/repository/dockerhub-proxy/image-name:1.0.1
The push refers to repository [my_dns/nexus/repository/dockerhub-proxy/image-name]
0bca66726bc2: Pushed
1.0.1: digest: sha256:0736228548d13e8d39fba5a0ed5cd8a7719074318fe9f8ddfc395fd454afc01f size: 528
PS C:\Dev\workspace> docker pull my_dns/nexus/repository/dockerhub-proxy/mysql:latest
**Error response from daemon: unknown: unknown**
I'm looking for the ability to pull via Docker Windows client daemon an official docker image from Docker Hub like mongo for instance passing by a Nexus proxy configured on a nexus OSS and exposed via http connector into Nexus Group (which contains both host and proxy), Nexus OSS hosted on AWS EC2 linux instance VPC/private subnet without any public hostname/EIP but via an ELB/ALB.
Thanks for your help