skip to Main Content

Uploading file to ECS task – Docker

I'm trying to upload a simple .yml file when creating an ECS task via Terraform, here is the code ./main.tf: resource "aws_ecs_task_definition" "grafana" { family = "grafana" cpu = "256" memory = "512" network_mode = "awsvpc" requires_compatibilities = ["FARGATE"] container_definitions…

VIEW QUESTION

SIGTERM not trapped by AWS ECS docker container

I have the following ECS container definition ContainerDefinitions: - Name: myfluentd Essential: true Image: !Ref DockerImage MountPoints: - SourceVolume: efs-volume ContainerPath: '/fluentd/buffers' ReadOnly: false PortMappings: - ContainerPort: 24224 HostPort: 24224 Protocol: tcp EntryPoint: - "/var/lib/twistlock/defender.sh" - "defender" - "entrypoint" -…

VIEW QUESTION

Cloudformation stacks, then how can I find the reason or log – Docker

When deploying from template, This service is stack as CREATE_IN_PROGRESS ServiceD69D759B arn:aws:ecs:ap-northeast-1:6781002281XX:service/AdminCluster/CdkFargateStack-ServiceD69D759B-sm274jjTfbP7 AWS::ECS::Service CREATE_IN_PROGRESS Resource creation Initiated - However I have no idea where to start. This docker image receive the access from 8011, so in local it works in…

VIEW QUESTION
Back To Top
Search