call the Docker self-hosting compose project 'zrok-instance'

This commit is contained in:
Kenneth Bingham
2024-04-26 15:14:45 -04:00
parent a770cbc882
commit f466d2dd5c
13 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
set -o xtrace
for arg in "${@}"; do
if [[ ! "${arg}" =~ ^- && -s "${arg}" ]]; then
CONFIG="${arg}"
break
fi
done
if [[ -z "${CONFIG}" ]]; then
echo "ERROR: args '${*}' do not contain a non-empty config file" >&2
exit 1
fi
# config.yml is first param
zrok admin bootstrap --skip-frontend "${CONFIG}"
exec "$@"