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
docker-entrypoint.sh: reading AWS_S3_SECRET_ACCESS_KEY variable from file not working, request for reading variable from file for AWS_S3_ACCESS_KEY_ID
#50
Closed
sanderdewitte opened this issue
Oct 23, 2023
· 0 comments
· Fixed by #52
Question 1:
In docker-entrypoint.sh should:
AWS_S3_SECRET_ACCESS_KEY=$(read -r "${AWS_S3_SECRET_ACCESS_KEY_FILE}")
on line 66 not be:
read -r AWS_S3_SECRET_ACCESS_KEY < "${AWS_S3_SECRET_ACCESS_KEY_FILE}"
to be able to work properly (i.e. read from the file path indicated with AWS_S3_SECRET_ACCESS_KEY_FILE and store in variable AWS_S3_SECRET_ACCESS_KEY)?
Question 2:
Could this same behavior (i.e. reading from file) be implemented for:
AWS_S3_ACCESS_KEY_ID
?
The text was updated successfully, but these errors were encountered:
Question 1:
In docker-entrypoint.sh should:
AWS_S3_SECRET_ACCESS_KEY=$(read -r "${AWS_S3_SECRET_ACCESS_KEY_FILE}")
on line 66 not be:
read -r AWS_S3_SECRET_ACCESS_KEY < "${AWS_S3_SECRET_ACCESS_KEY_FILE}"
to be able to work properly (i.e. read from the file path indicated with AWS_S3_SECRET_ACCESS_KEY_FILE and store in variable AWS_S3_SECRET_ACCESS_KEY)?
Question 2:
Could this same behavior (i.e. reading from file) be implemented for:
AWS_S3_ACCESS_KEY_ID
?
The text was updated successfully, but these errors were encountered: