8

I'm working on this https://github.com/hyperledger/education repository and When i try to run ./manage up, i'm getting this error .

ERROR: Pool overlaps with other one on this address space
Brajesh Singh
  • 635
  • 1
  • 5
  • 15

2 Answers2

20

Try running :

docker system prune

and now run

./manage up

and it will start working.

Adarsha Jha
  • 1,782
  • 2
  • 15
  • 37
  • 2
    WARNING! This will remove: - 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] N – mold Dec 09 '20 at 18:08
  • WARNING: This will remove all containers from your docker. This answer needs to be added as a warning in main body. – Abhijeet Patil Dec 20 '22 at 06:56
2

The error you are encountering is suggesting you have a network address conflict. run following list all the docker network running currently on your machine.

docker network ls

Then remove networks

docker network rm <networkId>
Nirbhay Mishra
  • 1,629
  • 3
  • 19
  • 35