{
  "containerDefinitions": [
    {
      "name": "app",
      "image": "${build_image}",
      "memory": 256,
      "memoryReservation": 128,
      "portMappings": [
        {
          "containerPort": 3000
        }
      ]
    },
    {
      "name": "worker",
      "image": "${build_image}",
      "memory": 256,
      "memoryReservation": 128,
      "logConfiguration": {
        "logDriver": "awslogs",
        "options": {
          "awslogs-region": "${region}",
          "awslogs-group": "bad",
          "awslogs-stream-prefix": "${slug}"
        }
      }
    }
  ]
}