mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-25 16:55:08 +00:00
10 lines
225 B
Bash
Executable file
10 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ -z "$BASE64_PASSWORD" ]]; then
|
|
echo "BASE64_PASSWORD is not set"
|
|
exit 1
|
|
fi
|
|
|
|
envsubst '${BASE64_PASSWORD}' \
|
|
< ./mariadbrootpasswordsecret.yaml.template > ./mariadbrootpasswordsecret.yaml
|