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
preguntada hace 7 meses222 visualizaciones
1 Respuesta
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
respondido hace 7 meses
  • 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.

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas