ECS Cluster And Container Fargate Type Qustion

0

The current environment has also built both ECSCluster Fargate and Container types with Fargate. To improve container security, we would like to create a user other than Root privileges and run the container. By the way, if it's a Fargate type, it's Serverless, but without customizing it and using the permissions of the user at the time of container execution I'd like to know if it can be done.

Juns
已提问 7 个月前222 查看次数
1 回答
0

Yes, it is possible to run your container with an arbitrary user. In your Dockerfile, you should create an user, and use the USER directive to change the default user in your container.

FROM microsoft/windowsservercore
# Create Windows user in the container
RUN net user /add patrick
# Set it for subsequent commands
USER patrick

By the way, if it's a Fargate type, it's Serverless, but without customizing it and using the permissions of the user at the time of container execution

Since it is serverless, you cannot manage the Docker's host machine (NOT the container) and I don't think you need to. The security responsibility lies on AWS, not you.

profile picture
HS
已回答 7 个月前
  • What I'm concerned about is that if you set an existing ECS container to the instance type and run it, the application will run with root user privileges on that container unless you specify a user. In the case of Fargate type, I wonder which user's permissions will be executed without customization.

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

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

回答问题的准则