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 1 year has passed since last update.

Docker 概要

Last updated at Posted at 2023-01-21
  1. DockerHub(Docker イメージのレジストリの一つ)などのレジストリからイメージ(コンテナの設計図)をPullする。
  2. pull したイメージをもとにDockerfile(イメージの定義書)でコンテナの設計図を作成する。
  3. Docker Compose で Dockerfile をビルドすることで Docker イメージ(コンテナの設計図)が作られ、そのイメージを起動することでコンテナが起動する。

docker run docker/whalesay cowsay Hello!
-------------
↑ コンテナ内で呼び出すコマンド

docker images
イメージ一覧

docker tag A B
イメージにタグ付けするコマンド
AとBをタグづけする

docker tag docker/whalesay my_whalesay
イメージにタグ付けするコマンド

docker inspect A
イメージの詳細情報を表示するコマンド
Aはイメージ名もしくはイメージID

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?