chronos
chronos copied to clipboard
Add specific documentation on how to deploy Docker containers
Again, similar to https://mesosphere.github.io/marathon/docs/native-docker.html.
+1
@ssk2 There's some useful sample code here: https://github.com/mesosphere/docker-screencasts
@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.
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.