mup setup fails with "endpoint with name mongodb already exists in network bridge"

1.4k Views Asked by At

I get an error while using mup setup:

Error response from daemon: endpoint with name mongodb already exists in network bridge

How can I resolve this?

1

There are 1 best solutions below

0
Peter T. On BEST ANSWER

The reason was that I manually removed a previous mongodb container, without cleaning up the network.

I finally succeeded with:

docker network disconnect bridge -f mongodb

After this mup setup worked as expected.