How can existing docker container be started (in sense of docker start) with customizations of docker run like
--entrypoint--env--volume
multiple times?
I want to avoid a hack of changing docker config that requires restart of docker daemon.
A clumsy way I found is to commit current container before each run and use docker run to start it.