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 5 years have passed since last update.

【docker compose】上手くいかないときの解決手順

Posted at

##Docker でうまく反映されない場合のおまじない
以下の手順でコマンドを実行します。

すべてのコンテナを停止する
docker stop $(docker ps -q)
すべてのコンテナを削除する
docker rm $(docker ps -q -a)
すべてのイメージを削除する
docker rmi $(docker images -q)
キャッシュ使わないでビルド
docker-compose build --no-cache
backgroundで起動
docker-compose up -d

これでうまくいかないなら
設定等を見直しています。

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?