+ migrated base to lgsm

This commit is contained in:
Lucas Briese 2018-09-25 16:18:01 +02:00
parent ea3eca9602
commit a67dc17a6f
2 changed files with 28 additions and 15 deletions

View File

@ -3,7 +3,7 @@ FROM ubuntu:16.04
EXPOSE 27015/udp 27015/tcp EXPOSE 27015/udp 27015/tcp
ENV STEAM_PATH="/home/steam" \ ENV STEAM_PATH="/home/steam" \
SERVER_PATH="/home/steam/server" \ SERVER_PATH="/home/steam/serverfiles" \
GROUP_ID=10000 \ GROUP_ID=10000 \
USER_ID=10000 \ USER_ID=10000 \
DOCKER_USER=steam \ DOCKER_USER=steam \
@ -19,7 +19,8 @@ ENV STEAM_PATH="/home/steam" \
HLDM_PATH="/home/steam/addons/hldm" \ HLDM_PATH="/home/steam/addons/hldm" \
TF2_PATH="/home/steam/addons/tf2" \ TF2_PATH="/home/steam/addons/tf2" \
\ \
USE_MY_REPLACER_CONFIG=false USE_MY_REPLACER_CONFIG=false \
DEBIAN_FRONTEND=noninteractive
ENTRYPOINT ["./home/entrypoint.sh"] ENTRYPOINT ["./home/entrypoint.sh"]
@ -29,25 +30,22 @@ COPY ["entrypoint.sh", "/home/"]
RUN dpkg --add-architecture i386 && \ RUN dpkg --add-architecture i386 && \
apt-get update -y && \ apt-get update -y && \
apt-get install -y mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates binutils bc jq tmux lib32gcc1 libstdc++6 libstdc++6:i386 lib32tinfo5 \ apt-get install -y mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates binutils bc jq tmux lib32gcc1 libstdc++6 libstdc++6:i386 lib32tinfo5 \
locales && \ locales sudo && \
\ \
groupadd -g $GROUP_ID $DOCKER_USER && \ groupadd -g $GROUP_ID $DOCKER_USER && \
useradd -d /home/steam/ -g $GROUP_ID -u $USER_ID -m $DOCKER_USER && \ useradd -d "$STEAM_PATH" -g $GROUP_ID -u $USER_ID -m $DOCKER_USER && \
chown "$DOCKER_USER:$DOCKER_USER" /home/entrypoint.sh && \ chown "$DOCKER_USER:$DOCKER_USER" /home/entrypoint.sh && \
mkdir -p "$SERVER_PATH" && \ sudo -u "$DOCKER_USER" mkdir -p "$SERVER_PATH" && \
chown -R "$DOCKER_USER:$DOCKER_USER" "$STEAM_PATH" && \ chown -R "$DOCKER_USER:$DOCKER_USER" "$STEAM_PATH" && \
chmod a=rx /home/entrypoint.sh && \ chmod a=rx /home/entrypoint.sh && \
chmod a=rx /home/installAndMountAddons.sh && \
chmod a=rx /home/forceWorkshopDownload.sh && \
chmod a=rx /home/experimental.sh && \
ulimit -n 2048 && \
\ \
ulimit -n 2048 && \
locale-gen en_US.UTF-8 && \ locale-gen en_US.UTF-8 && \
\ \
su -u "$DOCKER_USER" wget -O linuxgsm.sh https://linuxgsm.sh && \ wget -O "$STEAM_PATH/linuxgsm.sh" "https://linuxgsm.sh" && \
su -u "$DOCKER_USER" chmod +x linuxgsm.sh && \ chown "$DOCKER_USER:$DOCKER_USER" "$STEAM_PATH/linuxgsm.sh" && \
su -u "$DOCKER_USER" bash linuxgsm.sh gmodserver chmod +x "$STEAM_PATH/linuxgsm.sh"
USER "$USER_ID:$GROUP_ID" USER "$USER_ID:$GROUP_ID"
VOLUME "$SERVER_PATH" VOLUME "$SERVER_PATH"

View File

@ -1,13 +1,28 @@
#!/bin/bash #!/bin/bash
sleep 5s
echo "starting entrypoint.sh" echo "starting entrypoint.sh"
set -e set -e
cd "$STEAM_PATH"
parms="-game garrysmod +gamemode terrortown "$(printf "%s " "$@") parms="-game garrysmod +gamemode terrortown "$(printf "%s " "$@")
echo "starting with $parms" echo "starting with $parms"
./gmodserver install
ls -lA
if [ -e "${STEAM_PATH}/gmodserver" ]; then
./gmodserver update-lgsm
./gmodserver update
else
bash linuxgsm.sh gmodserver
./gmodserver auto-install
fi
trap './home/steam/gmodserver stop' SIGTERM trap './home/steam/gmodserver stop' SIGTERM
./gmodserver debug ./gmodserver start
./gmodserver console
wait "$!" wait "$!"