Skip to content

Instantly share code, notes, and snippets.

@ofiliz
Created January 15, 2018 23:01
Show Gist options
  • Select an option

  • Save ofiliz/736aaa2a5cbe6b3bab1604c5c5effa4e to your computer and use it in GitHub Desktop.

Select an option

Save ofiliz/736aaa2a5cbe6b3bab1604c5c5effa4e to your computer and use it in GitHub Desktop.
Simple ECS task definition consisting of a single nginx container
{
"containerDefinitions": [
{
"name": "nginx1",
"image": "nginx:latest",
"cpu": 0,
"memory": 512,
"essential": true
}
],
"volumes": [],
"networkMode": "none",
"family": "caldev-nginx"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment