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
asked 7 months ago210 views
1 Answer
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
answered 7 months ago
  • 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.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions