You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
At the moment docker image runs as root user which is not good from security perspective.
Describe the solution you'd like
Run docker container at leas as built-in node user with UID 1000.
Describe alternatives you've considered
Build custom image which is not great idea.
Additional context
Want to run this image in K8s as non root.
The text was updated successfully, but these errors were encountered:
docker run -d -p 3000:80 --user 1000 ealen/echo-server:0.8.10
I tried to run the docker with user 1000, it worked, so I think it should also work in k8s, maybe like this
Is your feature request related to a problem? Please describe.
At the moment docker image runs as root user which is not good from security perspective.
Describe the solution you'd like
Run docker container at leas as built-in
node
user with UID 1000.Describe alternatives you've considered
Build custom image which is not great idea.
Additional context
Want to run this image in K8s as non root.
The text was updated successfully, but these errors were encountered: