1
2

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イメージ一覧
docker images

# Dockerコンテナ一覧
docker ps -a

# イメージのダウンロード
docker pull hello-world

# Dockerfileからイメージ作成
docker build .

# イメージからコンテナ起動
docker run -d --name hello-world -p 80:80 hello-world

# コンテナを停止
docker stop hello-world

# コンテナの削除
docker rm hello-world

# イメージの削除
docker rmi hello-world

# オプション

-d
コンテナをバックグラウンド実行

–name
コンテナ名を指定します

-p
ホストとコンテナ間のポートフォワード設定。
基本的には、「-p <ホスト側のポート>:<コンテナ側のポート>」で書きます。
(ホスト側を省略すると自動で設定されます。)
コンテナは、Dockerにより作成されるネットワークに属するため、
このオプションを使わないと、ホストのIPアドレスを用いて、d
コンテナで使用しているポートにはアクセスができません。

--rm
起動が終わればコンテナ削除

1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?