chronos icon indicating copy to clipboard operation
chronos copied to clipboard

Add specific documentation on how to deploy Docker containers

Open ssk2 opened this issue 9 years ago • 4 comments

Again, similar to https://mesosphere.github.io/marathon/docs/native-docker.html.

ssk2 avatar May 12 '15 01:05 ssk2

+1

Aerlinger avatar Jul 01 '15 17:07 Aerlinger

@ssk2 There's some useful sample code here: https://github.com/mesosphere/docker-screencasts

Aerlinger avatar Jul 01 '15 17:07 Aerlinger

@ssk2 that's not entirely accurate, in particular it you'd like to pass parameters you'd place the map in container vs docker i.e.: chronos:

"container": {
 "image": "busybox",
 "type": "DOCKER",
 "network": "host",
 "parameters": [
    {"key": "volume", "value": "/tmp"} 
 ]
}

vs mathathon

"container": {
 "type": "DOCKER",
 "docker":{
    "network": "host",
    "image": "busybox",
    "parameters": [
       {"key": "volume", "value": "/tmp"} 
    ]
  }
}

I saw no documentation but you can view what is happening in the code here.

DarinJ avatar Apr 22 '16 14:04 DarinJ

None of the docker tasks mentioned here https://github.com/mesosphere/docker-screencasts work for me. They fail and I can't figure out what goes wrong.

mavdi avatar Jun 07 '17 22:06 mavdi