Hello!
Is it possible to run a container with --rm flag, using docker-java?
Docker api has no --rm you need control start/stop/delete lifecycle yourself in client
Hi!
According to this StackOverflow answer "--rm" has been moved to daemon side meaning that it should be accessible through the docker API. So it would make things a lot easier if it were implemented in this project.
See HostConfig#withAutoRemove :)
Thanks, I have been playing around since yesterday couldn't get it to work, just realized that I was compiling old code.