pull docker image with proxy
Daemon proxy configuration
Learn how to configure the Docker daemon to use an HTTP proxy

Daemon configuration
deamon.json
{
"proxies": {
"http-proxy": "http://{host}:{port}",
"https-proxy": "http://{host}:{port}",
"no-proxy": "localhost, 127.0.0.0/8"
}
}restart the daemon for the proxy configuration to take effect:
sudo systemctl restart docker
Member discussion