LoginSignup
1
0

More than 1 year has passed since last update.

`docker-compose up -d`時に`Creating network "xxx" with driver "bridge" ERROR: Pool overlaps with other one on this address space`が出て対策した際の備忘録

Posted at

docker-compose up -d時にCreating network "xxx" with driver "bridge" ERROR: Pool overlaps with other one on this address spaceが出て対策した際の備忘録

以下のようなエラーが出た場合

$ docker-compose up -d
Creating network "xxx" with driver "bridge"
ERROR: Pool overlaps with other one on this address space

以下記事を参考にしてdocker system pruneにより解決
docker-compose upしたら、Pool overlaps with other one on this address space というエラーが発生した

$ docker system prune
  - all stopped containers
  - all networks not used by at least one container
  - all dangling images
  - all dangling build cache

Are you sure you want to continue? [y/N] y
Deleted Containers:

参考

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