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 runのオプションについてまとめてみた

Last updated at Posted at 2021-08-27

別の記事に投稿している内容に関連して、Docker Runのオプションについて少し調べてみました。
参考ページ

コンテナの作成・実行

SonerQubeのコンテナ作成で↓こんなコマンドを実行してます。
docker run -itd --name sonar -p 9000:9000 sonarqube

runについて

まずはrunについて、runcreatestartコマンドを合わせたコマンドになっていて。

コマンド       概要
run createstart
create コンテナ作成のみ行われる
start 作成済みのコンテナを開始する

オプション

上記で使用している-itdは下にある-i,-t,-dを合わせたオプション

  コマンド       概要
-i, --interative=false コンテナの標準入力を開く
-t, --tty=false tty(端末デバイス)を使う
-d, --detach=false バックグラウンドで実行する
--name コンテナ名
-p {ホストのポート}:{コンテナのポート}

関連記事

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?