Open2

AWS ECS Setup

Teru roomTeru room

recrt2Proto
作成
コンピューティング設定 ((アドバンスト)):デフォルト
タスク定義:https://ap-northeast-1.console.aws.amazon.com/ecs/v2/task-definitions?region=ap-northeast-1
新しいタスク定義の作成
JSON を使用してタスク定義を作成

task_definition.json
{
    "requiresCompatibilities": [
        "FARGATE"
    ],
    "family": "",
    "containerDefinitions": [
        {
            "name": "",
            "image": "",
            "essential": true
        }
    ],
    "volumes": [],
    "networkMode": "awsvpc",
    "memory": "3 GB",
    "cpu": "1 vCPU",
    "executionRoleArn": ""
}

デプロイ設定