LoginSignup
0
0

More than 3 years have passed since last update.

docker-compose up --buildができないときの対処

Posted at

環境

・Windows10Pro
・Docker for windows 19.03.13

概要

〇コマンドで以下を実行したが、MySQLでエラーが出てbuildできない
 docker-compose up --build

〇エラーメッセージ
 ERROR: for web Cannot create container for service web1: Conflict.
 ~中略~
 havCreating mysql ... error

解決策

 ①以下のコマンドを実行しコンテナを一括削除する
 \$ docker rm $(docker ps -aq)
 ②以下のコマンドを実行し再度buildする
 \$ docker-compose up --build
 ③立ち上げることができる

参考

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