63
31

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-compose down と docker-compose stop
の違いについて、ふわふわしていた為、書いていきます。

#本題

##down
downはupで作成したコンテナ・ネットワーク・ボリューム・イメージを削除する。
※デフォルトでは、コンテナとネットワークのみ削除。

オプション
  --rmi hoge          イメージの削除。
                        hogeの部分は下記のいずれか。
                        'all': あらゆるサービスで使う全イメージを削除。
                        'local': imageフィールドにカスタム・タグのないイメージだけを削除。
   -v, --volumes       Compose ファイルの `volumes` セクションの名前付きボリューム削除。
                       また、コンテナがアタッチしたアノニマス・ボリュームも削除。
   --remove-orphans    Compose ファイルで定義していないサービス用のコンテナも削除。

##stop
stopは稼働中のコンテナを停止するが、削除はしない。
docker-compose start コマンドで、再起動。

オプション
-t, --timeout TIMEOUT      シャットダウンのタイムアウト秒数を指定する (デフォルトは10)。

#参照
https://docs.docker.com/compose/reference/down/
https://docs.docker.com/compose/reference/stop/

63
31
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
63
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?