1
Fork 0
mirror of https://github.com/Lovinoes/images.git synced 2024-12-21 16:37:45 -05:00

Update entrypoint.sh

This commit is contained in:
Lovinoes 2024-08-21 22:36:32 +02:00 committed by GitHub
parent 858fc1329e
commit cb72f54958
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,18 +1,25 @@
#!/bin/bash # Default the TZ environment variable to UTC.
cd /home/container || exit 1 TZ=${TZ:-UTC}
export TZ
CYAN='\033[0;36m'
RESET_COLOR='\033[0m'
java -version
# Set environment variable that holds the Internal Docker IP
INTERNAL_IP=$(ip route get 1 | awk '{print $(NF-2);exit}') INTERNAL_IP=$(ip route get 1 | awk '{print $(NF-2);exit}')
export INTERNAL_IP export INTERNAL_IP
# Replace Startup Variables # Switch to the container's working directory
# shellcheck disable=SC2086 cd /home/container || exit 1
MODIFIED_STARTUP=$(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')
echo -e "${CYAN}STARTUP /home/container: ${MODIFIED_STARTUP} ${RESET_COLOR}"
# Print Java version
printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0mjava -version\n"
java -version
# Convert all of the "{{VARIABLE}}" parts of the command into the expected shell
# variable format of "${VARIABLE}" before evaluating the string and automatically
# replacing the values.
PARSED=$(echo "${STARTUP}" | sed -e 's/{{/${/g' -e 's/}}/}/g' | eval echo "$(cat -)")
# Display the command we're running in the output, and then execute it with the env
# from the container itself.
printf "\033[1m\033[33mcontainer@pterodactyl~ \033[0m%s\n" "$PARSED"
# shellcheck disable=SC2086 # shellcheck disable=SC2086
eval ${MODIFIED_STARTUP} exec env ${PARSED}