"container": {
"type": "MESOS",
"docker": {
"image": "redis",
"forcePullImage": false
}
}
不支持的容器图片:DOCKER。
我没有安装docker。
答案 0 :(得分:0)
有关如何使用Mesos UCR运行Docker镜像的有效示例,请参阅https://mesosphere.github.io/marathon/docs/native-docker.html#mesos-containerizer-and-universal-container-runtime。
{
"id": "mesos-docker",
"container": {
"docker": {
"image": "mesosphere/inky"
},
"type": "MESOS"
},
"args": ["hello"],
"cpus": 0.2,
"mem": 16.0,
"instances": 1
}
你需要Marathon> = 1.3.0和Mesos> = 1.0。