Can I access fargate's container?

0

In local, I was able to connect to the container through the docker exec command.

However, fargate is a serverless service, so I wonder if it can connect to the container.

joker
已提问 2 年前837 查看次数
1 回答
1
已接受的回答

You cannot access the host in Fargate and run docker exec from there. However, you can enable ECS Command Execution in your task/service definition and then use the command aws ecs execute command which is going to have the same effect.

I can't recommend more to configure your cluster logging settings to log these exec commands so that you can audit when your users ran commands and see what these are (and their outputs).

Activating it is rather simple, but if you want something that will take care of creating the task definitions and possibly the cluster for you, look at x-cluster and x-ecs.EnableExecuteCommand which will create the CFN templates for you.

If you are using an existing cluster and these settings are set for command logging, compose-x will automatically detect that and configure IAM permissions accordingly.

Hope this helps,

profile picture
已回答 2 年前
profile pictureAWS
专家
Toni_S
已审核 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则