4
2

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 3 years have passed since last update.

Dockerコンテナ名の変更方法

Posted at

Dockerコンテナ名を変更する方法

Dockerコンテナの名前を変更するには、下記コマンドで変更可能。

$ docker rename old_name new_name

old_nameには今のコンテナ名を、new_nameには新しいコンテナ名を記述。

実行例

hogeというコンテナの名前をpiyoと変更するには下記コマンドを実行。

$ docker rename hoge piyo

また、docker psコマンドにて名前変更を確認。

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?