We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using Pumba with an external tc-image then the spawned containers are not removed which leaves behind a plethora of created/exited containers.
tc-image
Specifically, I'm using the following command
docker run -it --rm -v /var/run/docker.sock:/var/run/docker.sock gaiaadm/pumba --log-level=debug netem --duration=100s -target=[IP] --tc-image=gaiadocker/iproute2 loss --percent=100 [container]
I'd expect the created tc helper containers to be deleted once Pumba exits. As a workaround, I'm currently using the following to clean up
tc
docker rm -f "$(docker ps -a -q -f ancestor=gaiadocker/iproute2)"
The text was updated successfully, but these errors were encountered:
@jonastheis thank you for reporting this issue. Probably, it's related to API version, pumba is using. Need to check.
Sorry, something went wrong.
alexei-led
No branches or pull requests
Problem
When using Pumba with an external
tc-image
then the spawned containers are not removed which leaves behind a plethora of created/exited containers.Specifically, I'm using the following command
Expected behaviour
I'd expect the created
tc
helper containers to be deleted once Pumba exits. As a workaround, I'm currently using the following to clean upThe text was updated successfully, but these errors were encountered: