Skip to content

Instantly share code, notes, and snippets.

@sopel
Created March 23, 2015 10:10
Show Gist options
  • Select an option

  • Save sopel/c437fa2b5f6e4d6582ca to your computer and use it in GitHub Desktop.

Select an option

Save sopel/c437fa2b5f6e4d6582ca to your computer and use it in GitHub Desktop.
Traildash ECS task definition
{
"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