Backend configuration
The configuration for each case needs a configuration section specifying the docker setup send from the frontend on simulation start. To make this a bit more secure we could have a list of trusted images and entrypoints stored in the backend, so that not everything the frontend sends is accepted. JSON scheme ``` "configuration" : { "resources.image" : "git.iws.uni-stuttgart.de:4567/dumux-repositories/dumux-docker/viplab/test", "resources.volume" : "/data/shared", "resources.memory" : "1g", "resources.numCPUs" : 1, "running.entrypoint" : "/data/bin/run.sh", "running.commandLineArguments" : "params.input" } ```
issue