Skip to content

Commit

Permalink
fix(docker): add schedule allowlist replacement to entrypoint script (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3rw3rk authored Jul 13, 2023
1 parent 7c002e7 commit ef20f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eu
for f in /usr/share/nginx/html/*.js
do
# shellcheck disable=SC2016
envsubst '${VELA_API},${VELA_DOCS_URL},${VELA_FEEDBACK_URL},${VELA_MAX_BUILD_LIMIT}' < "$f" > "$f".tmp && mv "$f".tmp "$f"
envsubst '${VELA_API},${VELA_DOCS_URL},${VELA_FEEDBACK_URL},${VELA_MAX_BUILD_LIMIT},${VELA_SCHEDULE_ALLOWLIST}' < "$f" > "$f".tmp && mv "$f".tmp "$f"
done

NGINX_CONF=/etc/nginx/conf.d/default.conf
Expand Down

0 comments on commit ef20f02

Please sign in to comment.