2020-12-07 00:46:19 +01:00
|
|
|
#!/bin/bash
|
2020-12-04 03:05:20 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Matthew Penner
|
|
|
|
#
|
|
|
|
# This repository is licensed under the MIT License.
|
|
|
|
# https://github.com/matthewpi/images/blob/master/LICENSE.md
|
|
|
|
#
|
|
|
|
|
|
|
|
# Default the TZ environment variable to UTC.
|
|
|
|
TZ=${TZ:-UTC}
|
|
|
|
export TZ
|
|
|
|
|
|
|
|
# Switch to the container's working directory
|
|
|
|
cd /home/container
|
|
|
|
|
|
|
|
# Set environment variable that holds the Internal Docker IP
|
|
|
|
export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`
|
|
|
|
|
|
|
|
# Replace variables in the startup command
|
|
|
|
MODIFIED_STARTUP=`eval echo $(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')`
|
2020-12-07 00:45:25 +01:00
|
|
|
printf '\033[1m\033[33mcontainer@pterodactyl~ \033[0m'
|
|
|
|
echo "${MODIFIED_STARTUP}"
|
2020-12-04 03:05:20 +01:00
|
|
|
|
|
|
|
# Run the startup command
|
|
|
|
eval ${MODIFIED_STARTUP}
|