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

docker imageのリポジトリ名とタグ名を変更する

Last updated at Posted at 2025-01-17

このような場合を想定

REPOSITORY                                  TAG                  IMAGE ID       CREATED         SIZE
sample_repository                           latest               1a2b3c4d5e6f   2 days ago      366MB
<none>                                      <none>               g7h8i9j0k1l2   2 days ago      113MB

ケース1:sample_repositoryのタグ名を変更したい

docker tag sample_repository:new_tag
docker tag {リポジトリ名}:{新たなタグ名}

ケース2:<none>のリポジトリ名とタグ名を変更したい

docker tag g7h8i9j0k1l2 new_repository:latest
docker tag {image ID} {新たなリポジトリ名}:{新たなタグ名}

補足

  • イメージの一覧を確認する方法
docker images
0
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
0
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?