ECS FargateにRails + Nginxアプリをデプロイしたい

json

1{2 "family": "to_do_app-prod",3 "containerDefinitions": [4 {5 "name": "to_do_app-prod",6 "image": "943726312182.dkr.ecr.ap-northeast-1.amazonaws.com/to_do_app-prod:latest",7 "cpu": 0,8 "portMappings": [],9 "essential": true,10 "environment": [11 {12 "name": "RAILS_ENV",13 "value": "production"14 },15 {16 "name": "RAILS_MASTER_KEY",17 "value": "b30430bbe41e498a955b3900833032e9"18 },19 {20 "name": "DB_USERNAME",21 "value": "admin"22 },23 {24 "name": "DB_HOST",25 "value": "to-do-app-database-1.chfsoner1ldd.ap-northeast-1.rds.amazonaws.com"26 },27 {28 "name": "DB_PASSWORD",29 "value": "30113011tr"30 }31 ],32 "mountPoints": [33 {34 "sourceVolume": "public",35 "containerPath": "/app/public",36 "readOnly": false37 },38 {39 "sourceVolume": "tmp",40 "containerPath": "/app/tmp",41 "readOnly": false42 }43 ],44 "volumesFrom": [],45 "logConfiguration": {46 "logDriver": "awslogs",47 "options": {48 "awslogs-create-group": "true",49 "awslogs-group": "/ecs/to_do_app-prod",50 "awslogs-region": "ap-northeast-1",51 "awslogs-stream-prefix": "ecs"52 }53 }54 },55 {56 "name": "to_do_app-nginx",57 "image": "943726312182.dkr.ecr.ap-northeast-1.amazonaws.com/to_do_app-nginx:latest",58 "cpu": 0,59 "portMappings": [60 {61 "name": "to_do_app-nginx-80-tcp",62 "containerPort": 80,63 "hostPort": 80,64 "protocol": "tcp",65 "appProtocol": "http"66 }67 ],68 "essential": true,69 "environment": [],70 "mountPoints": [71 {72 "sourceVolume": "public",73 "containerPath": "/app/public",74 "readOnly": false75 },76 {77 "sourceVolume": "tmp",78 "containerPath": "/app/tmp",79 "readOnly": false80 }81 ],82 "volumesFrom": [],83 "logConfiguration": {84 "logDriver": "awslogs",85 "options": {86 "awslogs-create-group": "true",87 "awslogs-group": "/ecs/to_do_app-prod",88 "awslogs-region": "ap-northeast-1",89 "awslogs-stream-prefix": "ecs"90 }91 }92 }93 ],94 "executionRoleArn": "arn:aws:iam::943726312182:role/ecsTaskExecutionRole",95 "networkMode": "awsvpc",96 "volumes": [97 {98 "name": "public",99 "host": {}100 },101 {102 "name": "tmp",103 "host": {}104 }105 ],106 "requiresCompatibilities": [107 "FARGATE"108 ],109 "cpu": "1024",110 "memory": "3072",111 "runtimePlatform": {112 "cpuArchitecture": "X86_64",113 "operatingSystemFamily": "LINUX"114 }115}

コメントを投稿

0 コメント