1
1

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のイメージとコンテナ 

#1.イメージの取得、表示、削除

レジストリからイメージを取得

docker pull イメージ名
例)docker pulll イメージ名:バージョン指定可能

取得したイメージを表示、確認

docker images

取得したイメージを削除する

docker image rm イメージ
省略)docker rmi イメージ

#2.イメージからコンテナを作成,起動,停止,削除

コンテナの作成

docker create --name ○○○ イメージ名
詳細) --nameで名前を付けてから作成する

コンテナの確認

起動中のコンテナ表示
docker ps 

すべてのコンテナ表示
docker ps -a

コンテナの起動

docker start イメージ名

コンテナの停止

docker stop イメージ名

コンテナの削除

docker rm イメージ名

コンテナを全て削除

docker ps -a -q | xargs docker rm

#Nginxで作成されたページを確認する方法


docker create --name 指定名 -p 8080:80 nginx
詳細)8080:80  ← ホストのポート:コンテナのポート
        -p ← コンテナのポートをホストい結びつけ参照できる

#コンテナの作成と起動を一緒に行う

例)Nginxの場合
docker run --name 指定名 -p 8080:80 -d --rm nginx
詳細)  -d ← バッググラウンドで行う
          -rm ← 停止されたら削除も行う
1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?