Skip to content

Instantly share code, notes, and snippets.

@halfb00t
Created December 29, 2017 10:23
Show Gist options
  • Save halfb00t/ac08976d2d01194738e3d0111adcaba6 to your computer and use it in GitHub Desktop.
Save halfb00t/ac08976d2d01194738e3d0111adcaba6 to your computer and use it in GitHub Desktop.
[
{
"memory": ${memory},
"networkMode": "host",
"portMappings": [
{
"hostPort": ${host_port},
"containerPort": ${container_port},
"protocol": "tcp"
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "${log_group_name}",
"awslogs-stream-prefix": "${log_group_stream}",
"awslogs-region": "${log_group_region}"
}
},
"hostname": "${container_name}",
"essential": true,
"name": "${container_name}",
"ulimits": [
{
"softLimit": 12000,
"hardLimit": 12000,
"name": "nofile"
}
],
"image": "${image_url}",
"cpu": 0
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment