-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarathon.json
52 lines (52 loc) · 821 Bytes
/
marathon.json
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
{
"id": "/traefik",
"cmd": null,
"cpus": 1,
"mem": 128,
"disk": 0,
"instances": 3,
"acceptedResourceRoles": [
"*"
],
"args": [
"--configfile=/traefik.toml",
"--loglevel=debug"
],
"constraints": [
[
"hostname",
"UNIQUE"
]
],
"container": {
"type": "DOCKER",
"docker": {
"forcePullImage": true,
"image": "drewkerrigan/traefik-mesos:latest",
"parameters": [],
"privileged": true
},
"volumes": []
},
"env": {
"LD_LIBRARY_PATH": "/opt/lgtonmc/apache/lib"
},
"portDefinitions": [
{
"port": 80,
"name": "web",
"protocol": "tcp"
},
{
"port": 8081,
"name": "api",
"protocol": "tcp"
}
],
"requirePorts": true,
"networks": [
{
"mode": "host"
}
]
}