diff --git a/entrypoint.sh b/entrypoint.sh index 132fed6..164ba55 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,9 +1,9 @@ #!/bin/bash cd /home/container +# Print information echo "Running on Debian $(cat /etc/debian_version)" - -# Output Current Java Version +echo "Current timezone is: $(cat /etc/timezone)" java -version # Make internal Docker IP address available to processes. @@ -14,4 +14,4 @@ MODIFIED_STARTUP=`eval echo $(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g' echo ":/home/container$ ${MODIFIED_STARTUP}" # Run the Server -eval ${MODIFIED_STARTUP} \ No newline at end of file +eval ${MODIFIED_STARTUP}