Created
March 23, 2015 10:10
-
-
Save sopel/c437fa2b5f6e4d6582ca to your computer and use it in GitHub Desktop.
Traildash ECS task definition
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": "traildash", | |
| "image": "appliedtrust/traildash", | |
| "cpu": 1024, | |
| "memory": 1024, | |
| "environment": [ | |
| { | |
| "name": "AWS_REGION", | |
| "value": "eu-west-1" | |
| }, | |
| { | |
| "name": "AWS_SQS_URL", | |
| "value": "https://sqs.eu-west-1.amazonaws.com/860900021006/sopel-traildash-test-1" | |
| }, | |
| { | |
| "name": "DEBUG", | |
| "value": "1" | |
| } | |
| ], | |
| "portMappings": [ | |
| { | |
| "containerPort": 7000, | |
| "hostPort": 7000 | |
| } | |
| ], | |
| "mountPoints": [ | |
| { | |
| "sourceVolume": "traildashdata", | |
| "containerPath": "/var/lib/elasticsearch/" | |
| } | |
| ], | |
| "essential": true | |
| } | |
| ], | |
| "volumes": [ | |
| { | |
| "name": "traildashdata", | |
| "host": { | |
| "sourcePath": "/vol/traildashdata" | |
| } | |
| } | |
| ], | |
| "family": "traildash" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment