This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
idhub-docker/build__instance-localhost-pair.sh
pedro 03256f0f3b docker: add localhost pair
useful for testing OIDC flow in localhost
2024-03-09 20:29:44 +01:00

28 lines
418 B
Bash
Executable file

#!/bin/sh
set -e
set -u
# DEBUG
set -x
main() {
cd "$(dirname "${0}")"
# includes functions:
# common_start
# common_end
. ./build__common.sh
# vars used in common_start and end
target='instance-localhost-pair'
persistence='n'
idhubs='idhub1 idhub2'
idhub_branch='release'
common_start
common_end
}
main "${@}"