How to delete a docker network that does not exist?
Solution 1:
How can I get rid of that network- zombie?
Please try the following.
docker network inspect <id> or <name>
Under Containers you see all the containers that are still connected to the network
docker network disconnect -f <networkID> <endpointName> or <endpointId> try both
Next remove all unused networks
docker network prune
Fixed the problem for me ;)