【docker】コンテナの基本操作
当ページのリンクには広告が含まれています。
目次
コンテナの実行【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_hello
、version1
と新しいイメージが作成されています。
イメージを削除【docker rmi】
イメージを削除する場合には、docker rmi
コマンドを使用します。
$ docker rmi hello-world
また、既に削除しようとするイメージをもとに作成されたイメージを削除する場合には、オプションで-f
を用います。
$ docker rmi -f hello-world
コメント