1

I successfully integrated Docker Swarm with mesos and everything is going fine.

But now I can start containers on Docker swarm only from the Command line like this:

docker -H :4375 run -idt --cpu-shares 1 busybox. 

I am using Marathon for job scheduling in my cluster; is there any way to start a docker container on docker swarm integrated with mesos using Marathon?

Is it possible to do it with some other scheduler other than Marathon?

Tim Penner
  • 3,551
  • 21
  • 36
vathan Lal
  • 133
  • 4
  • 12

1 Answers1

0

You can launch Docker containers directly through Marathon. Here is the API reference that explains how to do so from the command line, but you can also launch your containers using Marathon web interface.

Community
  • 1
  • 1
hartem
  • 411
  • 2
  • 8
  • thanks for the reply.. Ya it is possible to run docker containers using Marathon on mesos.. But I need to start container on Docker Swarm integrated with Mesos using Marathon... – vathan Lal Mar 31 '16 at 21:42