Files
weave-scope/examples/mesos/minimesos.json
Bryan Boreham 0e1d3f84d9 Release 1.13.2
2021-04-09 09:46:09 +00: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.13.2",
"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"
}
]
}