First, I use the server environment:
I am using the watchtower third party app for the AWS CloudWatch log service. So, I need to give AWS credential information to the docker container.
When testing locally, docker run -v $ HOME / .aws: /root/.aws --rm -it -p 8080: 80 image_name
will connect the local credentials to the volume.
But I don't know how to apply it in AWS ECS.
http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html
I am following the above article, and I have written the .aws/ecs.confg file by following above article.
AWS_DEFAULT_REGION=ap-northeast-1
AWS_ACCESS_KEY_ID=bbbbbbbbb
AWS_SECRET_ACCESS_KEY=aaaaaaaaaaaa
I added command to the Dockerfile likes bello.
COPY .aws/ecs.config /etc/ecs/ecs.config
However, internal server error occurs when accessing ECS.
I have also tried to assign an "IAM role" to the container when "Task define" Even if you create "CloudWatchLogsFullAccess IAM role", nothing appears on the "Task define" creation screen role drop down.
If you have any other way, please help me.
Thank you.
Here is my logging setting. In local tests, logging works normally.
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
'simple': {
'format': '%(levelname)s %(message)s'
},
},
'handlers': {
'watchtower': {
'level': 'DEBUG',
'class': 'watchtower.CloudWatchLogHandler',
'formatter': 'verbose',
},
'console': {
'level': 'INFO',
'class': 'logging.StreamHandler',
},
},
'loggers': {
'django': {
'handlers': ['watchtower', 'console'],
'level': 'INFO',
'propagate': True,
},
'django.user': {
'handlers': ['watchtower'],
'level': DJANGO_LOG_LEVEL,
'propagate': False,
},
'django.partner': {
'handlers': ['watchtower'],
'level': DJANGO_LOG_LEVEL,
'propagate': False,
},
}
}
To connect to your container instance Open the Amazon ECS console at https://console.aws.amazon.com/ecs/ . Select the cluster that hosts your container instance. On the Cluster page, choose ECS Instances. On the Container Instance column, select the container instance to connect to.
Amazon ECS uses Docker images in task definitions to launch containers. Docker is a technology that provides the tools for you to build, run, test, and deploy distributed applications in containers. Docker provides a walkthrough on deploying containers on Amazon ECS.
AWS Copilot — Provides an open-source tool for developers to build, release, and operate production ready containerized applications on Amazon ECS.
With IAM roles for Amazon ECS tasks, you can specify an IAM role that can be used by the containers in a task to access AWS resources.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With