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基本コマンド

Posted at
  • イメージのビルド
    dockerfileを編集した場合に使う
$ docker-compose build
  • コンテナの作成と起動
    -dオプションでバックグラウンドで実行。
    ターミナルがログで占領されなくなる
$ docker-compose up -d
  • コンテナの停止と削除
$ docker-compose down
  • コンテナ一覧確認
$ docker-compose ps
  • ログ表示
$ docker-compose logs
  • コンテナのシェルを起動
    docker-compose exec web ~~~と入力しなくてもコマンドが実行できる
    exit で退出
docker-compose exec web /bin/bash
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?