From 518ed107def01dc045a4caa92c86e53d821dc4d8 Mon Sep 17 00:00:00 2001 From: Lovinoes Date: Wed, 21 Aug 2024 01:31:25 +0200 Subject: [PATCH] Create entrypoint.sh --- java-corretto/entrypoint.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 java-corretto/entrypoint.sh diff --git a/java-corretto/entrypoint.sh b/java-corretto/entrypoint.sh new file mode 100644 index 0000000..0645a0a --- /dev/null +++ b/java-corretto/entrypoint.sh @@ -0,0 +1,18 @@ +#!/bin/bash +cd /home/container || exit 1 + +YELLOW='\033[0;33m' +RESET_COLOR='\033[0m' + +java -version + +INTERNAL_IP=$(ip route get 1 | awk '{print $(NF-2);exit}') +export INTERNAL_IP + +# Replace Startup Variables +# shellcheck disable=SC2086 +MODIFIED_STARTUP=$(eval echo "$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g')") +echo -e "${YELLOW}[Startup Command]: ${MODIFIED_STARTUP} ${RESET_COLOR}" + +# shellcheck disable=SC2086 +exec ${MODIFIED_STARTUP}