0

Artifactory supports an OSS docker image. I can access the official website by proxy, but I can't download the image. Every time I try to download an image using the command from the official website

docker pull docker.bintray.io/jfrog/artifactory-oss

the download times out. Docker hub is okay.

dwjohnston
  • 11,163
  • 32
  • 99
  • 194
Sober Li
  • 1
  • 3

2 Answers2

0

As discussed in the comments, I am able to download using that same command. The problem is most likely due to your being behind a proxy. The steps to fix this will depend on your setup but there is useful advice in Cannot download Docker images behind a proxy

Ryan Dawson
  • 11,832
  • 5
  • 38
  • 61
0

Try setting your proxy as environment variables before pulling the image.

$ export http_proxy=http://your.proxy:80
$ export https_proxy=http://your.proxy:80
$ export no_proxy=localhost,127.0.0.1

After setting the proxies, you should be able to pull your image through the proxy:

$ docker pull docker.bintray.io/jfrog/artifactory-oss:4.16.0

Fabian Rivera
  • 1,138
  • 7
  • 15