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-compose】よく検索するコマンド集

Posted at

はじめに

こちらは、個人的な覚書です。
Dockerの再起動やログ調査に使うコマンド集です。

下記の環境を想定しています

- docker-compose 3

もくじ

  • 状態確認
  • 停止
  • 開始
  • 再起動
  • 作成や変更点の反映
  • 滅びの呪文
  • ログ閲覧
  • マイグレート
  • コンテナ内参照

状態確認

docker-compose ps

停止

docker-compose ps

開始

docker-compose start

再起動

docker-compose restart

作成や変更点の反映

docker-compose up --build -d

滅びの呪文

docker-compose down --rmi all --volumes --remove-orphans

ログ閲覧

docker-compose logs -f --tail=10 my_container_name

マイグレート

docker-compose exec django python manage.py migrate

コンテナ内参照

docker-compose exec my_container_name 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?