LoginSignup
3
3

More than 3 years have passed since last update.

[Docker] could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network エラー

Last updated at Posted at 2020-12-25

はじめに

dockerが立ち上がらなくなり、下記のエラーを対処したので備忘録として記事を作成しました。

エラー

ERROR: could not find an available, 
non-overlapping IPv4 address pool among the defaults to assign to the network

原因

使用可能なIPv4アドレスプールが見つからないとの事
デフォルトだとネットワークは最大30個までしか作れないとの事

下記コマンドでネットワーク一覧を見ることができる

docker network ls

対処方法

docker network prune
or
docker network rm ネットワークID

参考

3
3
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
3
3