下記を元にdocker-composeで環境を作ったいくつかのWordPressサイトを運用していたら、
docker-compose起動時に下記WARNINGが出た。
WARNING: Found orphan containers (***_pma) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
phpmyadminのコンテナの名前がかぶってる?
メッセージにあるように、
docker-compose up -d
これを
docker-compose up -d --remove-orphans
に変えることで出なくなった。