Who stops and starts the ECS task? and informs ECS service
问题 Below is the ECS task definition for an application: SomeappTaskDefinition: Type: "AWS::ECS::TaskDefinition" Properties: ContainerDefinitions: - Name: someapp Image: someaccounthub/someapp Memory: 450 Environment: - Name: DJANGO_SETTINGS_MODULE Value: someapp.settings.release - Name: MYSQL_HOST Value: { "Fn::GetAtt": ["DbInstance", "Endpoint.Address"] } - Name: MYSQL_USER Value: { "Ref": "DbUsername" } - Name: MYSQL_PASSWORD Value: { "Ref": "DbPassword" } MountPoints: - ContainerPath: /var