mesos - apache marathon: my docker image keeps failing -


im following steps on here

i've created json file such:

{   "id": "/myjavabuild-2",   "cmd": null,   "cpus": 1,   "mem": 1024,   "disk": 0,   "instances": 1,   "container": {     "type": "docker",     "volumes": [],     "docker": {       "image": "hub.docker.com/eugenepark3/myjavabuild",       "network": "host",       "privileged": false,       "parameters": [],       "forcepullimage": false     }   },   "portdefinitions": [     {       "port": 10001,       "protocol": "tcp",       "labels": {}     }   ],   "uris": [     "file:///etc/docker.tar.gz"   ],   "fetch": [     {       "uri": "file:///etc/docker.tar.gz",       "extract": true,       "executable": false,       "cache": false     }   ] } 

it keeps erroring out on marathon.

is correct way pull docker image hub.docker.com?


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -