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?

More than 3 years have passed since last update.

Docker 基本コマンドメモ

Posted at

##前提

Docker Hubにアカウント登録

##コマンド
###DockerHubにログイン
docker login

###コンテナイメージをプル
docker pull コンテナ名

###Dockerイメージの一覧表示
docker images

###イメージからコンテナを作成する
docker run コンテナイメージ

###コンテナを全ての表示
docker ps -a

###コンテナの起動
docker run -it コンテナID シェル

###停止中のコンテナの起動
docker restart コンテナID

###Docker image名の変更
docker tag 変更元 変更先

###Docker HubにPush
docker push リポジトリ名

###イメージの削除
docker rmi Dockerイメージ

###停止しているコンテナを全て削除
docker system prune

###Dockerイメージから名前をつけてコンテナを実行する
docker run --name コンテナ名 イメージ名

###exit後にコンテナを削除する
docker run --rm

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?