LoginSignup
1
2

More than 5 years have passed since last update.

Dockerコマンド

Posted at
機能 コマンド
バージョン参照 docker version
稼働中のコンテナを見る docker ps
停止中のコンテナも見る docker ps -a
コンテナの削除 docker rm <コンテナのName or ID>
停止中のコンテナを起動 docker start <コンテナのName or ID>
稼働中のコンテナに入る docker attach <コンテナのName or ID>
イメージの作成、更新 docker commit <コンテナのName or ID> <イメージのName of ID>
イメージの参照 docker images
イメージの削除 docker rmi <イメージのName of ID>
1
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
1
2