This commit is contained in:
Florian Forster
2025-08-05 14:40:53 -07:00
parent 3e437575c2
commit 4ad22ba456
11 changed files with 151 additions and 165 deletions

17
apps/api/entrypoint.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
case $@ in
sh*)
${@:3}
;;
bash*)
${@:5}
;;
*)
if [[ ! -z "$@" ]]
then
ZITADEL_ARGS="$@"
fi
/app/zitadel ${ZITADEL_ARGS}
;;
esac