Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hyperledger Indy ERROR: Pool overlaps with other one on this address space

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
like image 400
Artho Avatar asked Jul 22 '19 07:07

Artho


2 Answers

Try running :

docker system prune

and now run

./manage up

and it will start working.

like image 93
Adarsha Jha Avatar answered Nov 19 '22 04:11

Adarsha Jha


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>
like image 22
Nirbhay Mishra Avatar answered Nov 19 '22 03:11

Nirbhay Mishra