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, docker composeコマンドの整理

Posted at

はじめに

これまでに使ったことのあるdockerコマンドの整理をします

キーワード

docker, docker compose, makefile

dockderコマンド

  • build
    • イメージを作成する
  • run
    • イメージを元に、コンテナを作成し、起動する
      • 以下のコマンドの合成である
      • 作成: docker create
      • 起動: docker start
  • exec
    • 既に起動しているコンテナでコマンドを打てるコマンド
  • ps
    • 起動中のコンテナの情報をえる
      • IDとか名前とかポート番号とか
  • volume ls
    • volumeを一覧する
    • ここで注意すべきは設定ファイルできちんとvolumeの名前を指定しておかないとデフォルトではハッシュ値になる
  • image ls
    • imageを一覧する

docker composeコマンド

  • build
    • docker buildを複数コンテナに
  • up
    • 起動
  • down
    • 落とす
  • ps
    • docker psと実質変わらないが、docker-compose.ymlファイルで設定した内容が見れる
  • logs
    • logがたくさん見れる

以上

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?