Skip to content

Instantly share code, notes, and snippets.

@toonverbeek
Created October 5, 2015 09:33
Show Gist options
  • Save toonverbeek/1b17d1757db5cf6c33aa to your computer and use it in GitHub Desktop.
Save toonverbeek/1b17d1757db5cf6c33aa to your computer and use it in GitHub Desktop.
{
"containerDefinitions": [
{
"volumesFrom": [],
"portMappings": [
{
"hostPort": 80,
"containerPort": 5001,
"protocol": "tcp"
}
],
"command": null,
"environment": [],
"essential": true,
"entryPoint": null,
"links": [
"api"
],
"mountPoints": [],
"memory": 500,
"name": "frontend",
"cpu": 10,
"image": "wercker/frontend"
},
{
"volumesFrom": [],
"portMappings": [],
"command": [
"python",
"/pipeline/source/app.py"
],
"environment": [],
"essential": true,
"entryPoint": null,
"links": [
"redis"
],
"mountPoints": [],
"memory": 500,
"name": "api",
"cpu": 10,
"image": "wercker/api"
},
{
"volumesFrom": [],
"portMappings": [],
"command": null,
"environment": [],
"essential": true,
"entryPoint": null,
"links": null,
"mountPoints": [],
"memory": 500,
"name": "redis",
"cpu": 10,
"image": "redis"
}
],
"volumes": [],
"family": "wercker-counter"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment