We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b7081d + a4ba2a7 commit 0c84985Copy full SHA for 0c84985
influxdb/3.0-core/entrypoint.sh
@@ -1,9 +1,12 @@
1
#!/bin/bash
2
set -euo pipefail
3
4
-args=( "${@}" )
5
-for i in "${!args[@]}"; do
6
- args[${i}]="$(echo "${args[${i}]}" | envsubst)"
7
-done
+args=("${@}")
+
+if [[ "${1}" == influxdb3 ]] ; then
+ for i in "${!args[@]}"; do
8
+ args[i]="$(envsubst <<<"${args[i]}")"
9
+ done
10
+fi
11
12
exec "${args[@]}"
influxdb/3.0-enterprise/entrypoint.sh
0 commit comments