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 5450563 commit 8a0db30Copy full SHA for 8a0db30
scripts/docker-entrypoint.sh
@@ -29,10 +29,10 @@ configure_ssh_key() {
29
}
30
31
configure_env_file() {
32
- echo "Environment Variables: Additional values"
33
printf '%s' "$ENV_FILE" > "${ENV_FILE_PATH}"
34
env_file_len=$(grep -v '^#' ${ENV_FILE_PATH}|grep -v '^$' -c)
35
if [[ $env_file_len -gt 0 ]]; then
+ echo "Environment Variables: Additional values"
36
if [ "${DEBUG}" != "0" ]; then
37
echo "Environment vars before: $(env|wc -l)"
38
fi
@@ -42,10 +42,6 @@ configure_env_file() {
42
echo "Environment vars after: $(env|wc -l)"
43
44
45
-
46
- chmod 600 "${ENV_FILE_PATH}"
47
- eval "$(ssh-agent)"
48
- ssh-add "${SSH_KEY}"
49
50
51
configure_ssh_host() {
0 commit comments