Skip to content

Instantly share code, notes, and snippets.

@jhmartin
Last active August 29, 2015 14:13
Show Gist options
  • Save jhmartin/12209f78a592eaf98cfd to your computer and use it in GitHub Desktop.
Save jhmartin/12209f78a592eaf98cfd to your computer and use it in GitHub Desktop.
Submitting a Docker container w/a Consul service name to Mesos/Marathon >= 0.20
curl -v -X POST http://localhost:8080/v2/apps \
-H Content-Type:application/json -d '{
"id": "some-nginx",
"container": {
"docker": {
"parameters" : {
"env": "SERVICE_NAME=nginx-xyz"
},
"image": "nginx",
"network": "BRIDGE",
"portMappings": [
{ "containerPort": 80, "hostPort": 0, "protocol": "tcp" }
]
},
"type": "DOCKER",
"volumes": []
},
"cpus": 0.2,
"mem": 128.0,
"instances": 1
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment