Mic Szillat
9df75d6d98
With an entrypoint script, fill the configuration template from an environment variable containing the KI API URL.
10 lines
144 B
Bash
Executable File
10 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
: ${KI_API_URL:=http://ki-backend:5000}
|
|
|
|
sed -e "s%\$KI_API_URL%$KI_API_URL%g" config.js.in > config.js
|
|
|
|
exec "$@"
|