docker-compose restart connection pool full

后端 未结 4 2765
我寻月下人不归
我寻月下人不归 2021-02-20 02:28

My team and I are converting some of our infrastructure to docker using docker-compose. Everything appears to be working great the only issue I have is doing a restart it gives

4条回答
  •  遇见更好的自我
    2021-02-20 03:07

    I got the same issue with my Django Application. Running about 70 containers in docker-compose. This post heled me since it seems that prune is needed after setting COMPOSE_PARALLEL_LIMIT

    I did:

    docker-compose down
    export COMPOSE_PARALLEL_LIMIT=1000
    docker network prune
    docker-compose up -d
    

提交回复
热议问题