Created
January 15, 2018 23:01
-
-
Save ofiliz/736aaa2a5cbe6b3bab1604c5c5effa4e to your computer and use it in GitHub Desktop.
Simple ECS task definition consisting of a single nginx container
This file contains hidden or 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
| { | |
| "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