-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cage stop
is slow
#64
Comments
The underlying issue is that |
is it safe to |
|
Hello, I've found that stopping placeholder containers that are currently use (open connections) might be the cause of the slowdown. Since containers seems to be stopped alphabetically, things like In order to confirm this, simply
Now, compare:
On my research I've found that Not sure how that is issued by cage, but perhaps just ensuring non-dependent containers are stopped before placeholders might improve the situation. Cheers. |
Ah, nice find! I'm going to be doing a bunch of cage upgrades in the coming weeks and I'll take a look at this then! |
it often takes multiple minutes to
cage stop
an appa similar
docker rm -f $(docker ps -qa)
takes like 10 secondsi'm guessing we are happy to delegate this to docker-compose, but maybe we should go full-hog
docker ps -qa | parallel [...]
... 😀The text was updated successfully, but these errors were encountered: