I have successfully setup a Mesos Marathon Cluster running in HA mode. I can start docker instances, i also know how to map a host volume path to docker volumes.
I'm looking for a way to persist some docker volumes in a more portable way. I'm thinking about a Docker Volume Container. But by looking at the sourcecode of the mesos docker integration https://github.com/apache/mesos/blob/880c5a362d1c106c4f0758ed88d44db1a3053dda/src/docker/docker.cpp#L328 i can see that the docker parameter --volumes-from is not implemented. how do you guys use docker volumes trough mesos ? is there a better way ? i want the volumes to be able to be ported to another slave to restart the job there with the same data. Another question about the mesos docker code, https://github.com/apache/mesos/blob/880c5a362d1c106c4f0758ed88d44db1a3053dda/src/docker/docker.cpp#L349 here at line 349 mesos mapps the sandbox directory to the container ? what is the purpouse of this ? any more information or help is more than welcome, thanks in advance :)

