Hard without any real details of your use-case. It might be as simple as:
entrypoint.sh:
cat input.conf.tmpl | sed -e "s/{{VARIABLE_NAME}}/${VARIABLE_NAME}/g" > real.conf
exec "$@"
Hard without any real details of your use-case. It might be as simple as:
entrypoint.sh:
cat input.conf.tmpl | sed -e "s/{{VARIABLE_NAME}}/${VARIABLE_NAME}/g" > real.conf
exec "$@"