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
posta 7 mesi fa221 visualizzazioni
1 Risposta
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
con risposta 7 mesi fa
  • 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.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande