Skip to content
Snippets Groups Projects
Commit a9cecb94 authored by Alexander Pace's avatar Alexander Pace
Browse files

Update entrypoint: removing quotation marks that were being set in the password

parent c33995f9
No related branches found
No related tags found
1 merge request!29Python3
Pipeline #84445 passed with warnings
......@@ -31,7 +31,7 @@ LIST="aws_ses_access_key_id
for SECRET in $LIST
do
VARNAME=$( tr [:lower:] [:upper:] <<<$SECRET)
[ -f /run/secrets/$SECRET ] && export $VARNAME="'$(< /run/secrets/$SECRET)'"
[ -f /run/secrets/$SECRET ] && export $VARNAME="$(< /run/secrets/$SECRET)"
done
exec "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment