Add fivem image

This commit is contained in:
Matthew Penner
2020-12-29 11:23:21 -07:00
parent 86bad3c9c9
commit 4d9a1e9b1f
3 changed files with 50 additions and 0 deletions

26
fivem/entrypoint.sh Normal file
View File

@@ -0,0 +1,26 @@
#!/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
# 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')`
printf '\033[1m\033[33mcontainer@pterodactyl~ \033[0m'
echo "${MODIFIED_STARTUP}"
# Run the startup command
eval ${MODIFIED_STARTUP}