Last active
August 29, 2015 14:13
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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