Files
weave-scope/examples/mesos/minimesos.json
Daniel Holbach 6f0f8a2c6a update scope images to 1.11.0
Signed-off-by: Daniel Holbach <daniel@weave.works>
2019-05-21 16:26:20 +02:00

52 lines
836 B
JSON

{
"id": "weave-scope",
"cpus": 1,
"mem": 128,
"instances": 1,
"constraints": [
[
"hostname",
"UNIQUE"
]
],
"container": {
"type": "DOCKER",
"docker": {
"image": "weaveworks/scope:1.11.0",
"network": "HOST",
"privileged": true,
"parameters": [
{
"key": "pid",
"value": "host"
},
{
"key": "name",
"value": "weavescope"
}
]
},
"volumes": [
{
"containerPath": "/var/run/docker.sock",
"hostPath": "/var/run/docker.sock",
"mode": "RW"
}
]
},
"args": [
"--probe.docker",
"true"
],
"env": {
"CHECKPOINT_DISABLE": "true"
},
"portDefinitions": [
{
"port": 4040,
"protocol": "tcp",
"name": "http"
}
]
}