ki-frontend/entrypoint.sh
Mic Szillat d321a0fdce 🔧 Configure KI API URL from environment
With an entrypoint script, fill the configuration template from an
environment variable containing the KI API URL.
2024-01-12 18:50:22 +01:00

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 "$@"