1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【 Docker 】Pull制限の回避もかねて開発で使う親イメージを一旦Gitlabのコンテナレジストリに上げる

Posted at

開発中に何度もDocker Hubからpullを実行しているとpull制限に引っかかってしまいます→ダウンロード率制限
これを回避するため一度pullしたイメージを一旦Gitlabのコンテナレジストリに登録してから使うようにしていきたいと思います。

手順

# DockerHubから一度対象イメージををpull
docker pull <Docker Hubから落とすimage>

# 落としたイメージにtagをつける
docker tag <Docker Hubから落とすimage> <GitlabのURL>/<グループ名orユーザー名>/<リポジトリ名>/<image名:tag>

# gitlabにdocker login
docker login <GitlabのURL> # Gitlabのusername/passwordでログイン

# リポジトリのコンテナレジストリにpush
docker push <GitlabのURL>/<グループ名orユーザー名>/<リポジトリ名>/<image名:tag>

元のイメージ: python:3.8.10-slim
Gitlabのリポジトリ: https://gitlab.com/k8shiro/containerregistry-test
の場合、

docker pull python:3.8.10-slim
docker tag python:3.8.10-slim registry.gitlab.com/k8shiro/containerregistry-test/python:3.8.10-slim
docker login registry.gitlab.com
docker push registry.gitlab.com/k8shiro/containerregistry-test/python:3.8.10-slim

になります。
以後はdocker pull registry.gitlab.com/k8shiro/containerregistry-test/python:3.8.10-slimで使えます。

その他

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?