-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
Description
Feature request: Add a new variable ARANGO_ROOT_PASSWORD_FILE that allows for the password to be passed in as a file.
Reason: Enables better secrets management by orchestration tools.
Example of others doing it: The official MySQL docker image.
The change should be as simple as adding
if [ -f "$ARANGO_ROOT_PASSWORD_FILE" ]; then
ARANGO_ROOT_PASSWORD="$(cat $ARANGO_ROOT_PASSWORD_FILE)"
fi
immediately before: https://github.com/arangodb/arangodb-docker/blob/official/docker-entrypoint.sh#L41
dothebart and ObiWahn