LoginSignup
1
1

More than 5 years have passed since last update.

Oracle Container Registryからのpullが遅い場合の解決法

Posted at

Oracle Container Registryからイメージをダウンロードする際に、サイトの案内に従って普通にpullすると、Docker Storeからpullする場合に比べて、気の遠くなるほど待たされることがあります。

$ docker login container-registry.oracle.com
$ docker pull container-registry.oracle.com/database/enterprise

実は、ミラーが存在します。

  • container-registry-phx.oracle.com ... Phoenix(米国南西部)
  • container-registry-ash.oracle.com ... Ashburn(米国東海岸)

日本からの場合、container-registry-ash.oracle.comを使うと良さそうです。
以下のようにします。

$ docker login container-registry-ash.oracle.com
$ docker pull container-registry-ash.oracle.com/database/enterprise

参考:

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1