Skip to content

Instantly share code, notes, and snippets.

@corentone
Created August 25, 2015 20:45
Show Gist options
  • Save corentone/a7aa2d5e4cac4de9d003 to your computer and use it in GitHub Desktop.
Save corentone/a7aa2d5e4cac4de9d003 to your computer and use it in GitHub Desktop.
Logentries ECS definition
{
"containerDefinitions": [
{
"volumesFrom": [],
"portMappings": [],
"command": [
"-t <TOKEN>",
"-j",
"--skipByName ecs-agent"
],
"environment": [],
"essential": true,
"entryPoint": [],
"links": [],
"mountPoints": [
{
"containerPath": "/var/run/docker.sock",
"sourceVolume": "DockerSockVolume",
"readOnly": true
}
],
"memory": 100,
"name": "logentries",
"cpu": 10,
"image": "logentries/docker-logentries"
}
],
"volumes": [
{
"host": {
"sourcePath": "/var/run/docker.sock"
},
"name": "DockerSockVolume"
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment