Skip to content

Commit

Permalink
Fix substitution in docker entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed May 6, 2024
1 parent e8b7475 commit 8dbfded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
set -eu

envsubst '${API_URL} ${APP_TITLE} ${APP_INFO} ${LANGUAGE} ${NAVIGATOR_LANGUAGE} ${BASENAME} ${EXTENSIONS} ${AUTHENTICATION} ${AUTH_SERVER_URL} ${AUTH_CLIENT_ID}' < /etc/nginx/config.js.template > /var/www/config.js
envsubst '${API_URL} ${APP_TITLE} ${APP_INFO} ${LANGUAGE} ${NAVIGATOR_LANGUAGE} ${BASENAME} ${EXTENSIONS} ${AUTHENTICATION} ${AUTH_SERVER_URL} ${AUTH_CLIENT_ID} ${ANALYTICS_URL}' < /etc/nginx/config.js.template > /var/www/config.js

exec "$@"

0 comments on commit 8dbfded

Please sign in to comment.