1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58Mesos + Marathon + Deimos on Vagrant example
=============================
Basically under the instruction of http://mesosphere.io/learn/run-docker-on-mesosphere/
#Requirements(Tested on):
* VirtualBox: 4.3.12+
* Vagrant: 1.5.0
#Howto Use
##Setup Vagrant
In your host run.
```
$ git clone https://github.com/liubin/mesos-marathon-deimos-vagrant.git
$ cd mesos-marathon-deimos-vagrant
$ vagrant up
```
this will take a long time to complete.
##Pull ubuntu Docker Image
From here run in Ubuntu VM.
```
$ docker pull ubuntu
```
this may take a long time too.
##Submit a job
```
$ cd /vagrant
$ curl -X POST -H "Content-Type: application/json" localhost:8080/v2/apps -d@job.json
```
##Confirm
use one of below to confirm the result.
* On http://localhost:8080/ to confirm that the job has running task.
* On http://localhost:8090/ to confirm that you can see the "Hello World"
* use `sudo docker ps` to conrim the conatiner is running.
##Attention
I failed when submit a job with CPU share rate is set to `.5` as offical document, that lead mesos can not find a node to execute the job.So I changed it to `.1`, at least as an example it can run now.
#Feedback
welcome to liubin0329@gmail.com