Advertisement
mobilefish

Untitled

Dec 5th, 2020
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.96 KB | None | 0 0
  1.  
  2.     {
  3.       "name": "xray-daemon",
  4.       "image": "123456789012.dkr.ecr.us-east-2.amazonaws.com/xray-daemon",
  5.       "cpu": 32,
  6.       "memoryReservation": 256,
  7.       "portMappings" : [
  8.           {
  9.               "hostPort": 0,
  10.               "containerPort": 2000,
  11.               "protocol": "udp"
  12.           }
  13.        ],
  14.     },
  15.     {
  16.       "name": "scorekeep-api",
  17.       "image": "123456789012.dkr.ecr.us-east-2.amazonaws.com/scorekeep-api",
  18.       "cpu": 192,
  19.       "memoryReservation": 512,
  20.       "environment": [
  21.           { "name" : "AWS_REGION", "value" : "us-east-2" },
  22.           { "name" : "NOTIFICATION_TOPIC", "value" : "arn:aws:sns:us-east-2:123456789012:scorekeep-notifications" },
  23.           { "name" : "AWS_XRAY_DAEMON_ADDRESS", "value" : "xray-daemon:2000" }
  24.       ],
  25.       "portMappings" : [
  26.           {
  27.               "hostPort": 5000,
  28.               "containerPort": 5000
  29.           }
  30.       ],
  31.       "links": [
  32.         "xray-daemon"
  33.       ]
  34.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement