We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the docker world it's best practice to let a containerized service run as non-root. For example Postgres create a postgres user and then in the Dockerfile use USER postgres to let the workload run under that user.. I recommend you also introduce such a user for the official ArangoDB container images.
postgres
USER postgres
The text was updated successfully, but these errors were encountered:
Will you solve this or is this to be maintained as is?
Sorry, something went wrong.
Hi, since this will be a breaking change for existing users we may only do this with an arangodb 4.0 release.
I also remember this being trouble some for mac/windows docker users.
There are two options to have to fix this for you right now:
--uid
No branches or pull requests
In the docker world it's best practice to let a containerized service run as non-root.
For example Postgres create a
postgres
user and then in the Dockerfile useUSER postgres
to let the workload run under that user..I recommend you also introduce such a user for the official ArangoDB container images.
The text was updated successfully, but these errors were encountered: