【docker】コンテナの基本操作

当ページのリンクには広告が含まれています。
  • URLをコピーしました!
目次

コンテナの実行【docker run】

$ docker run hello-world

docker run xxxコマンドでは、Docker Hubにあるイメージをダウンロードして、コンテナの起動を行います。

ローカルにイメージがある場合にはローカル上のイメージが使用されます。

また、runコマンドは、複数のコマンドを実行しており

  • docker pull イメージを取得
  • docker create コンテナの作成
  • docker start コンテナを起動

を連続して実行したことになります。

$ docker run hello-world

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

ダウンロードイメージの確認【docker images】

$ docker images

ローカル上のダウンロード済みイメージを確認できます。

$ docker images
REPOSITORY    TAG       IMAGE ID       CREATED        SIZE
hello-world   latest    feb5d9fea6a5   3 months ago   13.3kB

イメージにタグをつける【docker tag】

docker imagesで一覧表示した際に、TAGの欄がありました。

タグは、任意の値で新しいイメージを作成することができ、さらに:で任意のタグをつけることができます。

$ docker tag original new_image:version1

docker imagesでレポジトリとタグ名を確認します。

$ docker images
REPOSITORY    TAG        IMAGE ID       CREATED        SIZE
hello-world   latest     feb5d9fea6a5   3 months ago   13.3kB
my_hello      version1   feb5d9fea6a5   3 months ago   13.3kB

my_helloversion1と新しいイメージが作成されています。

イメージを削除【docker rmi】

イメージを削除する場合には、docker rmiコマンドを使用します。

$ docker rmi hello-world

また、既に削除しようとするイメージをもとに作成されたイメージを削除する場合には、オプションで-fを用います。

$ docker rmi -f hello-world
よかったらシェアしてね!
  • URLをコピーしました!
  • URLをコピーしました!

コメント

コメントする

目次