mirror of
https://github.com/casjaysdevdocker/deno
synced 2025-01-18 12:34:21 -05:00
🗃️ modified: bin/entrypoint-deno.sh 🗃️
This commit is contained in:
parent
f532040cdf
commit
e235d69647
@ -8,10 +8,10 @@
|
|||||||
# @Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
|
# @Copyright : Copyright: (c) 2022 Jason Hempstead, Casjays Developments
|
||||||
# @Created : Sunday, Jul 10, 2022 10:05 EDT
|
# @Created : Sunday, Jul 10, 2022 10:05 EDT
|
||||||
# @File : entrypoint-deno.sh
|
# @File : entrypoint-deno.sh
|
||||||
# @Description :
|
# @Description :
|
||||||
# @TODO :
|
# @TODO :
|
||||||
# @Other :
|
# @Other :
|
||||||
# @Resource :
|
# @Resource :
|
||||||
# @sudo/root : no
|
# @sudo/root : no
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
APPNAME="$(basename "$0" 2>/dev/null)"
|
APPNAME="$(basename "$0" 2>/dev/null)"
|
||||||
@ -47,15 +47,7 @@ if [[ -n "${HOSTNAME}" ]]; then
|
|||||||
echo "127.0.0.1 $HOSTNAME localhost" >/etc/hosts
|
echo "127.0.0.1 $HOSTNAME localhost" >/etc/hosts
|
||||||
fi
|
fi
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
if [[ -n "$CONFIG_DIR" ]] && [[ -d "$CONFIG_DIR" ]]; then
|
[[ -f "/app/.env" ]] && source /app/.env
|
||||||
for config in $CONFIG_DIR; do
|
|
||||||
if [[ -d "/config/$config" ]]; then
|
|
||||||
cp -Rf "/config/$config/." "/etc/$config/"
|
|
||||||
elif [[ -f "/config/$config" ]]; then
|
|
||||||
cp -Rf "/config/$config" "/etc/$config"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--help)
|
--help)
|
||||||
@ -70,7 +62,7 @@ bash | shell | sh)
|
|||||||
__exec_bash "$@"
|
__exec_bash "$@"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
__exec_bash "$@"
|
exec deno run --allow-net "${@:-https://deno.land/std/examples/welcome.ts}"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
Loading…
x
Reference in New Issue
Block a user