1
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?

docker compose をV2にしたら、ネットワークの設定がエラーになったので修正してみました

Posted at

概要

docker-composeのV1が非推奨になっていたのを、やっとV2にバージョンアップしました。

さっそくdocker-compose upからdocker compose upに変更して起動してみると、以下のようなエラー

WARN[0000] network default: network.external.name is deprecated in favor of network.name

が出ましたので、docker-compose.ymlを修正してみました。

変更箇所

エラーの元になった箇所

networks:
  default:
    external:
      name: bridge

これを以下のように変更

networks:
  default:
    name: bridge
    external: true

これで、無事に起動しました。

※参考 https://github.com/docker/compose-cli/issues/1856

ありがとうございます。

1
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
1
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?