Hi, at the moment I'm implementing a framework for Mesos. My scheduler starts one task which spawns a container with an executor which is able to handle and run the task. This pattern allows that the code/executable of the executor mustn't present on the slave node. In my use-case the tasks requires to run multiple Docker container which would be started by the executor who also has access on the Docker daemon but this would break the resource isolation of Mesos.
Have someone an advice to handle this types of tasks which requires additional containers? It could be also possible that a executor builds a Docker image which also requires to spawn additional contains in the context/resource space of one single task. Thanks and regards Christoph

