Question of Docker Containerizer supportting Slave Mode

2017-09-03 Thread jianbin.zh...@xtaotech.com
Hi all 1. If we add a third SLAVE mode for Volume Mode in mesos.proto, will it result in not working for all of frameworks? For example, Volume Mode is enumerate type in mesos.proto, we want to add a third SLAVE mode and modify marathon to support DockerContainerizer, This SLAVE mode will be

Re: Question on Docker Containerizer

2015-04-08 Thread Alex Rukletsov
Stephen, FWIK, every containerizer supports two launch strategies: with custom executor and with the default mesos-executor. Docker containerizer is no exception. To use your own executor, specify ExecutorInfo instead of CommandInfo in your TaskInfo. Also make sure you provide ContainerInfo in

Re: Question on Docker Containerizer

2015-04-08 Thread Adam Bordelon
Hi Thomas, You might be looking for a custom (external) containerizer. The containerizer is what creates the container that the executor is run in, so you should not have an executor launching another containerizer. If you want to modify/control the docker run commands (besides specifying

Question on Docker Containerizer

2015-04-07 Thread Stephen Salinas
Hey Everyone, I have a question on using the docker containerizer. I have a feeling it isn’t possible, but, is there a way to use the docker containerizer within a custom executor? (ie. have it help translate commands to docker and manage the containers within the wrapper of the custom