yolks/alpine/entrypoint.sh

34 lines
848 B
Bash
Raw Normal View History

2020-07-19 19:26:09 +02:00
#!/bin/ash
#
# 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
# Set the timezone in the container
echo $TZ > /etc/timezone
ln -s ../usr/share/zoneinfo/$TZ /etc/localtime
# Switch to the container's working directory
USER=container
HOME=/home/container
export USER
export HOME
2020-07-19 19:26:09 +02:00
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')`
echo "[container@pterodactyl ~]$ ${MODIFIED_STARTUP}"
2020-07-19 19:26:09 +02:00
# Run the startup command
su -c "eval ${MODIFIED_STARTUP}" container