на внезапное:
# docker run alpine:edge
Unable to find image 'alpine:edge' locally
docker: Error response from daemon: pull access denied for alpine, repository does not exist or may require 'docker login': denied: <html><body><h1>403 Forbidden</h1>
Since Docker is a US company, we must comply with US export control regulations. In an effort to comply with these, we now block all IP addresses that are located in Cuba, Iran, North Korea, Republic of Crimea, Sudan, and Syria. If you are not in one of these cities, countries, or regions and are blocked, please reach out to https://hub.docker.com/support/contact/
</body></html>.
лечится добавлением в /etc/docker/daemon.json:
"registry-mirrors" : [ "https:\/\/mirror.gcr.io" ]
добавление HTTP_PROXY / HTTPS_PROXY через тор также помогает, но возможны proxyconnect tcp: net/http: TLS handshake timeout
# docker run alpine:edge
Unable to find image 'alpine:edge' locally
docker: Error response from daemon: pull access denied for alpine, repository does not exist or may require 'docker login': denied: <html><body><h1>403 Forbidden</h1>
Since Docker is a US company, we must comply with US export control regulations. In an effort to comply with these, we now block all IP addresses that are located in Cuba, Iran, North Korea, Republic of Crimea, Sudan, and Syria. If you are not in one of these cities, countries, or regions and are blocked, please reach out to https://hub.docker.com/support/contact/
</body></html>.
лечится добавлением в /etc/docker/daemon.json:
"registry-mirrors" : [ "https:\/\/mirror.gcr.io" ]
добавление HTTP_PROXY / HTTPS_PROXY через тор также помогает, но возможны proxyconnect tcp: net/http: TLS handshake timeout
лечится изменением протокола для https-proxy c https на http:
"proxies": {
"http-proxy": "http://address:port",
"https-proxy": "http://address:port"
}
в отличии от родной доки
https://docs.docker.com/config/daemon/systemd/#httphttps-proxy
>"https-proxy": "https://proxy.example.com:3129"
лечится изменением протокола для https-proxy c https на http:
"proxies": {
"http-proxy": "http://address:port",