I can suspend the processes running inside a container with the PAUSE
command. Is it possible to clone the Docker container whilst paused, so that it can be resumed (i.e. via the UNPAUSE
command) several times in parallel?
The use case for this is a process which takes long time to start (i.e. ~20 seconds). Given that I want to have a pool of short-living Docker containers running that process in parallel, I would reduce start-up time for each container a lot if this was somehow possible.