Compare commits
19 Commits
master
...
longvinter
Author | SHA1 | Date | |
---|---|---|---|
236334ff80 | |||
303a34fdfc | |||
5ddc1a0529 | |||
ce3ed9a621 | |||
0ea362b2ab
|
|||
b7200357d8
|
|||
efe2bb59d9
|
|||
efd60b96e0
|
|||
ee5a2f1829
|
|||
880730b7fe
|
|||
9f9c71c6c2
|
|||
5a4d80c8b6
|
|||
c175a4a0ff
|
|||
e2fb757d18
|
|||
e9925180e3
|
|||
62d3ac602e
|
|||
92de85ef6b
|
|||
059b9f7ca6
|
|||
83992eb6cb
|
13
Dockerfile
13
Dockerfile
@@ -1,18 +1,19 @@
|
|||||||
FROM ich777/debian-baseimage
|
FROM ich777/debian-baseimage
|
||||||
|
|
||||||
LABEL maintainer="admin@minenet.at"
|
LABEL org.opencontainers.image.authors="admin@minenet.at"
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/ich777/docker-steamcmd-server"
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get -y install --no-install-recommends lib32gcc-s1 lib32stdc++6 && \
|
apt-get -y install --no-install-recommends lib32gcc-s1 lib32stdc++6 git-lfs && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
ENV DATA_DIR="/serverdata"
|
ENV DATA_DIR="/serverdata"
|
||||||
ENV STEAMCMD_DIR="${DATA_DIR}/steamcmd"
|
ENV STEAMCMD_DIR="${DATA_DIR}/steamcmd"
|
||||||
ENV SERVER_DIR="${DATA_DIR}/serverfiles"
|
ENV SERVER_DIR="${DATA_DIR}/serverfiles"
|
||||||
ENV GAME_ID="template"
|
ENV GAME_ID="1639880"
|
||||||
ENV GAME_NAME="template"
|
ENV GAME_NAME=""
|
||||||
ENV GAME_PARAMS="template"
|
ENV GAME_PARAMS=""
|
||||||
ENV GAME_PORT=27015
|
ENV GAME_PORT=27016
|
||||||
ENV VALIDATE=""
|
ENV VALIDATE=""
|
||||||
ENV UMASK=000
|
ENV UMASK=000
|
||||||
ENV UID=99
|
ENV UID=99
|
||||||
|
43
README.md
43
README.md
@@ -1,50 +1,35 @@
|
|||||||
# SteamCMD in Docker optimized for Unraid
|
# SteamCMD in Docker optimized for Unraid
|
||||||
This Docker will download and install SteamCMD and the according game that is pulled via specifying the Tag.
|
This Docker will download and install SteamCMD. It will also install Longvinter and run it.
|
||||||
|
|
||||||
**Please see the different Tags/Branches which games are available.**
|
**Initial Server Name:** Longvinter Docker
|
||||||
|
**Initial Password:** Docker
|
||||||
|
|
||||||
|
Update Notice: Simply restart the container if a newer version of the game is available.
|
||||||
|
|
||||||
## Example Env params for CS:Source
|
## Example Env params for CS:Source
|
||||||
| Name | Value | Example |
|
| Name | Value | Example |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| STEAMCMD_DIR | Folder for SteamCMD | /serverdata/steamcmd |
|
| STEAMCMD_DIR | Folder for SteamCMD | /serverdata/steamcmd |
|
||||||
| SERVER_DIR | Folder for gamefile | /serverdata/serverfiles |
|
| SERVER_DIR | Folder for gamefile | /serverdata/serverfiles |
|
||||||
| GAME_ID | The GAME_ID that the container downloads at startup. If you want to install a static or beta version of the game change the value to: '232330 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 232330 |
|
| GAME_PARAMS | Values to start the server | empty |
|
||||||
| GAME_NAME | SRCDS gamename | cstrike |
|
|
||||||
| GAME_PARAMS | Values to start the server | -secure +maxplayers 32 +map de_dust2 |
|
|
||||||
| UID | User Identifier | 99 |
|
| UID | User Identifier | 99 |
|
||||||
| GID | Group Identifier | 100 |
|
| GID | Group Identifier | 100 |
|
||||||
| GAME_PORT | Port the server will be running on | 27015 |
|
| GAME_PORT | Port the server will be running on | 27016 |
|
||||||
| VALIDATE | Validates the game data | true |
|
|
||||||
| USERNAME | Leave blank for anonymous login | blank |
|
|
||||||
| PASSWRD | Leave blank for anonymous login | blank |
|
|
||||||
|
|
||||||
**ATTENTION: You have to disable Steam Guard for games that require authentication, but not all games need Steam credentials, Steam recommends to create a seperate account for dedicated servers **
|
## Run example
|
||||||
|
|
||||||
>**NOTE** GAME_ID values can be found [here](https://developer.valvesoftware.com/wiki/Dedicated_Servers_List)
|
|
||||||
|
|
||||||
> And for GAME_NAME there is no list, so a quick search should give you the result
|
|
||||||
|
|
||||||
## Run example for CS:Source
|
|
||||||
```
|
```
|
||||||
docker run --name CSSource -d \
|
docker run --name Longvinter -d \
|
||||||
-p 27015:27015 -p 27015:27015/udp \
|
-p 27016:27016/udp \
|
||||||
--env 'GAME_ID=232330' \
|
--env 'GAME_PORT=27016' \
|
||||||
--env 'GAME_NAME=cstrike' \
|
|
||||||
--env 'GAME_PORT=27015' \
|
|
||||||
--env 'GAME_PARAMS=-secure +maxplayers 32 +map de_dust2' \
|
|
||||||
--env 'UID=99' \
|
--env 'UID=99' \
|
||||||
--env 'GID=100' \
|
--env 'GID=100' \
|
||||||
--volume /mnt/user/appdata/steamcmd:/serverdata/steamcmd \
|
--volume /path/to/steamcmd:/serverdata/steamcmd \
|
||||||
--volume /mnt/user/appdata/cstrikesource:/serverdata/serverfiles \
|
--volume /path/to/longvinter:/serverdata/serverfiles \
|
||||||
ich777/steamcmd:latest
|
ich777/steamcmd:longvinter
|
||||||
```
|
```
|
||||||
>**NOTE** port 26900 is the port for vac, in case of multiple servers make sure these are not the same
|
|
||||||
|
|
||||||
|
|
||||||
This Docker was mainly edited for better use with Unraid, if you don't use Unraid you should definitely try it!
|
This Docker was mainly edited for better use with Unraid, if you don't use Unraid you should definitely try it!
|
||||||
|
|
||||||
|
|
||||||
This Docker is forked from mattieserver, thank you for this wonderfull Docker.
|
This Docker is forked from mattieserver, thank you for this wonderfull Docker.
|
||||||
|
|
||||||
|
|
||||||
#### Support Thread: https://forums.unraid.net/topic/79530-support-ich777-gameserver-dockers/
|
#### Support Thread: https://forums.unraid.net/topic/79530-support-ich777-gameserver-dockers/
|
@@ -1,20 +1,27 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
if [ ! -f ${STEAMCMD_DIR}/steamcmd.sh ]; then
|
if [ ! -f ${STEAMCMD_DIR}/steamcmd.sh ]; then
|
||||||
echo "SteamCMD not found!"
|
echo "SteamCMD not found!"
|
||||||
wget -q -O ${STEAMCMD_DIR}/steamcmd_linux.tar.gz http://media.steampowered.com/client/steamcmd_linux.tar.gz
|
wget -q -O ${STEAMCMD_DIR}/steamcmd_linux.tar.gz http://media.steampowered.com/client/steamcmd_linux.tar.gz
|
||||||
tar --directory ${STEAMCMD_DIR} -xvzf /serverdata/steamcmd/steamcmd_linux.tar.gz
|
tar --directory ${STEAMCMD_DIR} -xvzf /serverdata/steamcmd/steamcmd_linux.tar.gz
|
||||||
rm ${STEAMCMD_DIR}/steamcmd_linux.tar.gz
|
rm ${STEAMCMD_DIR}/steamcmd_linux.tar.gz
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "---Update SteamCMD---"
|
echo "---Update SteamCMD---"
|
||||||
if [ "${USERNAME}" == "" ]; then
|
if [ "${USERNAME}" == "" ]; then
|
||||||
${STEAMCMD_DIR}/steamcmd.sh \
|
${STEAMCMD_DIR}/steamcmd.sh \
|
||||||
+login anonymous \
|
+login anonymous \
|
||||||
+quit
|
+quit
|
||||||
else
|
fi
|
||||||
${STEAMCMD_DIR}/steamcmd.sh \
|
|
||||||
+login ${USERNAME} ${PASSWRD} \
|
if [ -d ${SERVER_DIR}/.git ]; then
|
||||||
+quit
|
if [ -d ${SERVER_DIR}/Longvinter/Saved ]; then
|
||||||
|
echo "Found old folder structure, migrating to new folder stucture!"
|
||||||
|
echo "Please don't interrupt this process since this can lead to data loss!"
|
||||||
|
cp -R ${SERVER_DIR}/Longvinter/Saved /tmp/
|
||||||
|
echo "Backing up save game, please wait..."
|
||||||
|
rm -rf ${SERVER_DIR}/* ${SERVER_DIR}/.*
|
||||||
|
echo "Done!"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "---Update Server---"
|
echo "---Update Server---"
|
||||||
@@ -50,19 +57,36 @@ else
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d /tmp/Saved ]; then
|
||||||
|
echo "Restoring savegame, please wait..."
|
||||||
|
cp -R /tmp/Saved ${SERVER_DIR}/Longvinter/
|
||||||
|
rm -rf /tmp/Saved
|
||||||
|
echo "Done!"
|
||||||
|
fi
|
||||||
|
|
||||||
echo "---Prepare Server---"
|
echo "---Prepare Server---"
|
||||||
if [ ! -f ${DATA_DIR}/.steam/sdk32/steamclient.so ]; then
|
if [ ! -f ${DATA_DIR}/.steam/sdk64/steamclient.so ]; then
|
||||||
if [ ! -d ${DATA_DIR}/.steam ]; then
|
if [ ! -d ${DATA_DIR}/.steam/sdk64 ]; then
|
||||||
mkdir ${DATA_DIR}/.steam
|
mkdir -p ${DATA_DIR}/.steam/sdk64
|
||||||
fi
|
fi
|
||||||
if [ ! -d ${DATA_DIR}/.steam/sdk32 ]; then
|
cp -R ${STEAMCMD_DIR}/linux64/* ${DATA_DIR}/.steam/sdk64/
|
||||||
mkdir ${DATA_DIR}/.steam/sdk32
|
fi
|
||||||
fi
|
if [ ! -f ${SERVER_DIR}/Longvinter/Saved/Config/LinuxServer/Game.ini ]; then
|
||||||
cp -R ${STEAMCMD_DIR}/linux32/* ${DATA_DIR}/.steam/sdk32/
|
echo "---No config file found, creating...---"
|
||||||
|
echo "[/Game/Blueprints/Server/GI_AdvancedSessions.GI_AdvancedSessions_C]
|
||||||
|
ServerName=Longvinter Docker
|
||||||
|
MaxPlayers=32
|
||||||
|
ServerMOTD=Welcome to Longvinter running in Docker!
|
||||||
|
Password=Docker
|
||||||
|
CommunityWebsite=unraid.net
|
||||||
|
|
||||||
|
[/Game/Blueprints/Server/GM_Longvinter.GM_Longvinter_C]
|
||||||
|
AdminSteamID=" > ${SERVER_DIR}/Longvinter/Saved/Config/LinuxServer/Game.ini
|
||||||
fi
|
fi
|
||||||
chmod -R ${DATA_PERM} ${DATA_DIR}
|
chmod -R ${DATA_PERM} ${DATA_DIR}
|
||||||
|
chmod +x ${SERVER_DIR}/Longvinter/Binaries/Linux/LongvinterServer-Linux-Shipping
|
||||||
echo "---Server ready---"
|
echo "---Server ready---"
|
||||||
|
|
||||||
echo "---Start Server---"
|
echo "---Start Server---"
|
||||||
cd ${SERVER_DIR}
|
cd ${SERVER_DIR}
|
||||||
${SERVER_DIR}/srcds_run -game ${GAME_NAME} ${GAME_PARAMS} -console +port ${GAME_PORT}
|
${SERVER_DIR}/Longvinter/Binaries/Linux/LongvinterServer-Linux-Shipping Longvinter -Port=${GAME_PORT} ${GAME_PARAMS}
|
@@ -1,28 +1,33 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
echo "---Checking if UID: ${UID} matches user---"
|
echo "---Ensuring UID: ${UID} matches user---"
|
||||||
usermod -u ${UID} ${USER}
|
usermod -u ${UID} ${USER}
|
||||||
echo "---Checking if GID: ${GID} matches user---"
|
echo "---Ensuring GID: ${GID} matches user---"
|
||||||
|
groupmod -g ${GID} ${USER} > /dev/null 2>&1 ||:
|
||||||
usermod -g ${GID} ${USER}
|
usermod -g ${GID} ${USER}
|
||||||
echo "---Setting umask to ${UMASK}---"
|
echo "---Setting umask to ${UMASK}---"
|
||||||
umask ${UMASK}
|
umask ${UMASK}
|
||||||
|
|
||||||
echo "---Checking for optional scripts---"
|
echo "---Checking for optional scripts---"
|
||||||
if [ -f /opt/scripts/user.sh ]; then
|
cp -f /opt/custom/user.sh /opt/scripts/start-user.sh > /dev/null 2>&1 ||:
|
||||||
echo "---Found optional script, executing---"
|
cp -f /opt/scripts/user.sh /opt/scripts/start-user.sh > /dev/null 2>&1 ||:
|
||||||
chmod +x /opt/scripts/user.sh
|
|
||||||
/opt/scripts/user.sh
|
if [ -f /opt/scripts/start-user.sh ]; then
|
||||||
|
echo "---Found optional script, executing---"
|
||||||
|
chmod -f +x /opt/scripts/start-user.sh ||:
|
||||||
|
/opt/scripts/start-user.sh || echo "---Optional Script has thrown an Error---"
|
||||||
else
|
else
|
||||||
echo "---No optional script found, continuing---"
|
echo "---No optional script found, continuing---"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "---Starting...---"
|
echo "---Taking ownership of data...---"
|
||||||
chown -R root:${GID} /opt/scripts
|
chown -R root:${GID} /opt/scripts
|
||||||
chmod -R 750 /opt/scripts
|
chmod -R 750 /opt/scripts
|
||||||
chown -R ${UID}:${GID} ${DATA_DIR}
|
chown -R ${UID}:${GID} ${DATA_DIR}
|
||||||
|
|
||||||
|
echo "---Starting...---"
|
||||||
term_handler() {
|
term_handler() {
|
||||||
kill -SIGTERM "$killpid"
|
kill -SIGINT $(pidof LongvinterServer-Linux-Shipping)
|
||||||
wait "$killpid" -f 2>/dev/null
|
tail --pid=$(pidof LongvinterServer-Linux-Shipping) -f 2>/dev/null
|
||||||
exit 143;
|
exit 143;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user