Docker 错误:network xxx id xxxx has active endpoints

Problem Description: Project Docker Compose deployment, use docker-compose down command closes when an error:

Removing network xxxl_default

ERROR: network xxxxl_default has active endpoints

 

Solution:

docker network inspect {network} view the network conditions such as: docker network inspect xxxxl_default

docker network disconnect -f {network} {endpoint-name} Solution 1

sudo service docker restart Solution 2 (pro-test available)

Guess you like

Origin www.cnblogs.com/linpd/p/11032243.html