Compare commits

...

11 Commits

Author SHA1 Message Date
a23ec2db55 „scripts/start.sh“ ändern 2022-10-25 11:02:03 +02:00
771cabb9fa „Dockerfile“ ändern 2022-05-06 10:13:00 +02:00
8831a4cc3c „README.md“ ändern 2022-04-18 10:29:49 +02:00
ba2d645d7f „scripts/start-server.sh“ ändern 2022-04-18 10:23:41 +02:00
0f5315ce52 „scripts/start.sh“ ändern 2022-04-18 10:23:20 +02:00
c3d7fab8d4 „Dockerfile“ ändern 2022-04-18 10:23:03 +02:00
203df5243f „scripts/start-server.sh“ ändern 2021-02-09 10:17:08 +01:00
7d9c8b9cf5 „Dockerfile“ ändern 2021-02-09 09:51:17 +01:00
c60595c261 „scripts/start-server.sh“ ändern 2021-02-09 09:50:44 +01:00
085965ae58 „Dockerfile“ ändern 2021-02-09 08:49:10 +01:00
02142603fa „scripts/start.sh“ ändern 2020-07-20 12:55:06 +02:00
4 changed files with 74 additions and 48 deletions

View File

@@ -1,9 +1,11 @@
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 dpkg --add-architecture i386 && \
apt-get -y install --no-install-recommends lib32gcc1 && \ apt-get update && \
apt-get -y install --no-install-recommends lib32gcc-s1 libstdc++6:i386 && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
ENV DATA_DIR="/serverdata" ENV DATA_DIR="/serverdata"
@@ -25,8 +27,8 @@ ENV DATA_PERM=770
RUN mkdir $DATA_DIR && \ RUN mkdir $DATA_DIR && \
mkdir $STEAMCMD_DIR && \ mkdir $STEAMCMD_DIR && \
mkdir $SERVER_DIR && \ mkdir $SERVER_DIR && \
useradd -d $DATA_DIR -s /bin/bash $USER && \ useradd -d $SERVER_DIR -s /bin/bash $USER && \
chown -R $USER $DATA_DIR && \ chown -R $USER $SERVER_DIR && \
ulimit -n 2048 ulimit -n 2048
ADD /scripts/ /opt/scripts/ ADD /scripts/ /opt/scripts/

View File

@@ -1,45 +1,44 @@
# SteamCMD in Docker optimized for Unraid # SteamCMD in Docker optimized for Unraid
This Docker will download and install SteamCMD. It will also install Counter-Strike: Source and run it. Update Notice: Simply restart the container if a newer version of the game is available. This Docker will download and install SteamCMD. It will also install Chivalry: Medieval Warfare and run it.
**Update Notice:** Simply restart the container if a newer version of the game is available.
**Server Config:** You find the server config in: '../appdata/UDKGame/Config/' (eg: the servername is located in: 'PCServer-UDKGame.ini')
## Env params ## Env params
| 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 | SteamID for server | 232330 | | 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: '220070 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 220070 |
| GAME_NAME | SRCDS gamename | cstrike | | MAP | Map name (eg: 'aocffa-arena3_p', 'aocffa-hillside_p', 'aocffa-battlegrounds_v3_p') | aocffa-moor_p |
| GAME_PARAMS | Values to start the server | -secure +maxplayers 32 +map de_dust2 | | ADMIN_PWD | Server Admin Password (can't be empty) | adminDocker |
| GAME_PARAMS | Values to start the server | ?port=7000?queryport=7010 |
| GAME_PARAMS_EXTRA | Type in your Extra Game Parameters seperated with a space and - (eg: -seekfreeloadingserver) | -seekfreeloadingserver |
| 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 | | VALIDATE | Validates the game data | blank |
| VALIDATE | Validates the game data | true |
| USERNAME | Leave blank for anonymous login | blank | | USERNAME | Leave blank for anonymous login | blank |
| PASSWRD | 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, Steam recommends to create a seperate account for dedicated servers***
>**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 ## Run example
``` ```
docker run --name CSSource -d \ docker run --name Chivalry-MedievalWarfare -d \
-p 27015:27015 -p 27015:27015/udp \ -p 7000:7000/udp -p 7010:7010/udp -p 27015:27015/udp \
--env 'GAME_ID=232330' \ --env 'GAME_ID=220070' \
--env 'GAME_NAME=cstrike' \ --env 'MAP=aocffa-moor_p' \
--env 'GAME_PORT=27015' \ --env 'ADMIN_PWD=adminDocker' \
--env 'GAME_PARAMS=-secure +maxplayers 32 +map de_dust2' \ --env 'GAME_PARAMS=?port=7000?queryport=7010' \
--env 'GAME_PARAMS_EXTRA=-seekfreeloadingserver' \
--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/chivalrymw:/serverdata/serverfiles \
ich777/steamcmd:latest ich777/steamcmd:chivalrymw
``` ```
>**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/

View File

@@ -22,14 +22,14 @@ if [ "${USERNAME}" == "" ]; then
if [ "${VALIDATE}" == "true" ]; then if [ "${VALIDATE}" == "true" ]; then
echo "---Validating installation---" echo "---Validating installation---"
${STEAMCMD_DIR}/steamcmd.sh \ ${STEAMCMD_DIR}/steamcmd.sh \
+login anonymous \
+force_install_dir ${SERVER_DIR} \ +force_install_dir ${SERVER_DIR} \
+login anonymous \
+app_update ${GAME_ID} validate \ +app_update ${GAME_ID} validate \
+quit +quit
else else
${STEAMCMD_DIR}/steamcmd.sh \ ${STEAMCMD_DIR}/steamcmd.sh \
+login anonymous \
+force_install_dir ${SERVER_DIR} \ +force_install_dir ${SERVER_DIR} \
+login anonymous \
+app_update ${GAME_ID} \ +app_update ${GAME_ID} \
+quit +quit
fi fi
@@ -37,26 +37,31 @@ else
if [ "${VALIDATE}" == "true" ]; then if [ "${VALIDATE}" == "true" ]; then
echo "---Validating installation---" echo "---Validating installation---"
${STEAMCMD_DIR}/steamcmd.sh \ ${STEAMCMD_DIR}/steamcmd.sh \
+login ${USERNAME} ${PASSWRD} \
+force_install_dir ${SERVER_DIR} \ +force_install_dir ${SERVER_DIR} \
+login ${USERNAME} ${PASSWRD} \
+app_update ${GAME_ID} validate \ +app_update ${GAME_ID} validate \
+quit +quit
else else
${STEAMCMD_DIR}/steamcmd.sh \ ${STEAMCMD_DIR}/steamcmd.sh \
+login ${USERNAME} ${PASSWRD} \
+force_install_dir ${SERVER_DIR} \ +force_install_dir ${SERVER_DIR} \
+login ${USERNAME} ${PASSWRD} \
+app_update ${GAME_ID} \ +app_update ${GAME_ID} \
+quit +quit
fi fi
fi fi
echo "---Prepare Server---" echo "---Prepare Server---"
if [ ! -f ${SERVER_DIR}/Binaries/Linux/lib/steamclient.so ]; then
cp ${STEAMCMD_DIR}/linux32/steamclient.so ${SERVER_DIR}/Binaries/Linux/lib/
fi
if [ ! -f ${SERVER_DIR}/Binaries/Linux/steam_appid.txt ]; then
echo "219640" > ${SERVER_DIR}/Binaries/Linux/steam_appid.txt
fi
sed -i "/ServerName=Dev Testing Server/c\ServerName=Chivalry Docker" ${SERVER_DIR}/UDKGame/Config/PCServer-UDKGame.ini
sed -i "/MessageOfTheDay=Welcome to a UDK Server\!/c\MessageOfTheDay=Welcome to Chivalry: Medieval Warfare in Docker on Unraid\!" ${SERVER_DIR}/UDKGame/Config/PCServer-UDKGame.ini
chmod -R ${DATA_PERM} ${DATA_DIR} chmod -R ${DATA_PERM} ${DATA_DIR}
echo "---Server ready---" echo "---Server ready---"
echo "---Sleep zZz...---"
sleep infinity
echo "---Start Server---" echo "---Start Server---"
cd ${SERVER_DIR} cd ${SERVER_DIR}/Binaries/Linux
${SERVER_DIR}/srcds_run -game ${GAME_NAME} ${GAME_PARAMS} -console +port ${GAME_PORT} ${SERVER_DIR}/Binaries/Linux/UDKGameServer-Linux ${MAP}?adminpassword=${ADMIN_PWD}?steamsockets${GAME_PARAMS} ${GAME_PARAMS_EXTRA}

View File

@@ -1,21 +1,41 @@
#!/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 ${UID}:${GID} /opt/scripts chown -R root:${GID} /opt/scripts
chmod -R 750 /opt/scripts
chown -R ${UID}:${GID} ${DATA_DIR} chown -R ${UID}:${GID} ${DATA_DIR}
su ${USER} -c "/opt/scripts/start-server.sh"
echo "---Starting...---"
term_handler() {
kill -SIGTERM "$killpid"
wait "$killpid" -f 2>/dev/null
exit 143;
}
trap 'kill ${!}; term_handler' SIGTERM
su ${USER} -c "/opt/scripts/start-server.sh" &
killpid="$!"
while true
do
wait $killpid
exit 0;
done