-
Notifications
You must be signed in to change notification settings - Fork 453
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
Auto-remove docker containers after run #2204
Comments
Please follow the issue template provided. More specifically, update the original comment for this issue by adding a link to the required debug.md gist which includes debugging information that answers our most commonly asked questions. Thank you. |
This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. Please reach out if you have or find the answers we need so that we can investigate further. |
Please follow the issue template provided. More specifically, update the original comment for this issue by adding a link to the required debug.md gist which includes debugging information that answers our most commonly asked questions. Thank you. |
I think the bug is in atom-beautify/src/beautifiers/executable.coffee Lines 451 to 460 in bb9428a
Looks like other users have experienced this, too: https://twitter.com/lambdafu/status/987116195538141184 |
I can reproduce:
|
@RixzZ You can use the following to clean up: docker ps --all | grep "unibeautify/" | awk '{ print $1 }' | xargs docker rm |
Fix #2204. Auto-remove docker containers after run.
Published fix to v0.33.4 |
Description
I'm using atom-beautify with beautysh on docker. Every time it executes, a new container is created and not autoremoved. The same container is not being used anymore, so after a few saves I end up with the same number of beautysh containers that times I saved a file.
Steps to Reproduce
Atom Beautify: Beautify Editor
Docker have a flag '--rm' you can specify when running the container so it automatically remove itself when the task finishes. Can that be
Checklist
I have:
so I know this is not a duplicate issue
Atom Beautify: Help Debug Editor
command in Atom and added link fordebug.md
Gist to this issueThe text was updated successfully, but these errors were encountered: