We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178ac4c commit 38b6ff4Copy full SHA for 38b6ff4
scripts/docker-entrypoint.sh
@@ -34,8 +34,12 @@ configure_env_file() {
34
if [[ $env_file_len -gt 0 ]]; then
35
echo "Environment Variables: Additional values"
36
if [ "${DEBUG}" != "0" ]; then
37
- cat "${ENV_FILE}"
38
- cat "${ENV_FILE_PATH}"
+ echo "Base64 env"
+ echo -n "$ENV_FILE" | base64
39
+ echo "Base64 file"
40
+ printf "%s" "$(cat ${ENV_FILE_PATH} | base64)"
41
+ echo "Contents file"
42
+ printf "Content:\n%s\n" "$(cat ${ENV_FILE_PATH})"
43
echo "Environment vars before: $(env|wc -l)"
44
fi
45
# shellcheck disable=SC2046
0 commit comments