This repository was archived by the owner on Jan 23, 2018. It is now read-only.
This repository was archived by the owner on Jan 23, 2018. It is now read-only.
rocker rerun should probably use a more gentle way to stop and delete containers #8
Currently all rocker does is to force-delete the container.
This will kill the processes running in that container which in most cases won't cause trouble (as all the container data is thrown away anyway).
But persistent data (data volume containers/host-based volumes) might be in an irreparable state when the processes get killed.
To avoid that it's most likely better to issue a
docker stopcall before removing a container.