ERROR: Pool overlaps with other one on this address space when starting my_project docker setup

28,762

Solution 1

Could you provide us with the command you have run as well as your docker-compose.yml file please?

The error you are encountering is suggesting you have a network address conflict. To check that you could run: docker network ls to list all the docker network running currently on your machine.

Once you have identified the culprit you should be able to remove it with the following command: docker network rm my_network (where my_network is the one you have created initially)

Solution 2

if you don't mind delete all docker networks, you could run

docker network rm $(docker network ls -q)

Solution 3

remove one or more network in the result of docker network ls with docker network rm ID

Share:
28,762

Related videos on Youtube

bruna_dosti
Author by

bruna_dosti

Updated on April 27, 2022

Comments

  • bruna_dosti
    bruna_dosti about 2 years

    I'm trying to setup docker and I`m getting the following error:

    ERROR: Pool overlaps with other one on this address space

    What should I do to solve it,please?

    • Michał Krzywański
      Michał Krzywański almost 5 years
      You receive it during installation of docker or when trying to run some container?
    • thoroc
      thoroc over 4 years
      Please provide the command you run and your docker-compose file. Have you specified the network and renamed if after run it once? That error suggest a conflict. You could list the network docker network ls and delete the existing one should you find it docker network rm my_network.
    • shezi
      shezi over 4 years
      @thoroc I believe this is the answer. Turn it into an answer and we'll all upvote it.