Compare commits

...

12 Commits

Author SHA1 Message Date
615d3f8a66 „scripts/start.sh“ ändern 2022-10-25 10:59:45 +02:00
046df0fb2a „Dockerfile“ ändern 2022-05-06 09:57:35 +02:00
34f3a36ece „scripts/start.sh“ ändern 2022-04-18 09:35:12 +02:00
ce4bb3bb00 „scripts/start.sh“ ändern 2022-04-07 17:12:00 +02:00
4648c95c43 „scripts/start.sh“ ändern 2021-12-14 15:13:02 +01:00
a1b56154be „README.md“ ändern 2021-12-14 13:27:34 +01:00
e4d5e48dd0 „Dockerfile“ ändern 2021-12-14 13:22:38 +01:00
51629bd034 „scripts/start.sh“ ändern 2021-12-14 13:22:16 +01:00
b1714b05b3 „scripts/start-server.sh“ ändern 2021-12-14 13:21:52 +01:00
d490df5165 „scripts/start-server.sh“ ändern 2021-01-28 19:30:14 +01:00
7893d8393e „Dockerfile“ ändern 2021-01-28 19:26:31 +01:00
02142603fa „scripts/start.sh“ ändern 2020-07-20 12:55:06 +02:00
4 changed files with 55 additions and 42 deletions

View File

@@ -1,9 +1,10 @@
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 lib32gcc1 && \ apt-get -y install --no-install-recommends lib32gcc-s1 libgl1 && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
ENV DATA_DIR="/serverdata" ENV DATA_DIR="/serverdata"

View File

@@ -1,14 +1,16 @@
# 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 America's Army: Proving Grounds and run it.
Update Notice: Simply restart the container if a newer version of the game is available.
## 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: '203300 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 203300 |
| GAME_NAME | SRCDS gamename | cstrike | | SRV_NAME | The server name | Army Docker |
| GAME_PARAMS | Values to start the server | -secure +maxplayers 32 +map de_dust2 | | GAME_PARAMS | Values to start the server | -port=7778 -SAP=8778 -SQP=27015 -aauregion=1 -log=Server.log |
| 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 | 27015 |
@@ -16,30 +18,22 @@ This Docker will download and install SteamCMD. It will also install Counter-Str
| 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 AmericasArmy-PG -d \
-p 27015:27015 -p 27015:27015/udp \ -p 7778:7778/udp -p 8778:8778/udp -p 27015:27015/udp \
--env 'GAME_ID=232330' \ --env 'GAME_ID=203300' \
--env 'GAME_NAME=cstrike' \ --env 'SRV_NAME=Army Docker' \
--env 'GAME_PORT=27015' \ --env 'GAME_PARAMS=-port=7778 -SAP=8778 -SQP=27015 -aauregion=1 -log=Server.log' \
--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/americasarmy-pg:/serverdata/serverfiles \
ich777/steamcmd:latest ich777/steamcmd:aaprovinggrounds
``` ```
>**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,14 +37,14 @@ 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
@@ -54,9 +54,6 @@ echo "---Prepare Server---"
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}
${SERVER_DIR}/srcds_run -game ${GAME_NAME} ${GAME_PARAMS} -console +port ${GAME_PORT} ${SERVER_DIR}/Binaries/Linux/AAPG -servername=\"${SRV_NAME}\" ${GAME_PARAMS}

View File

@@ -1,21 +1,42 @@
#!/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 -SIGINT $(pidof AAPG)
tail --pid=$(pidof AAPG) -f 2>/dev/null
sleep 0.5
exit 143;
}
trap 'kill ${!}; term_handler' SIGTERM
su ${USER} -c "/opt/scripts/start-server.sh" &
killpid="$!"
while true
do
wait $killpid
exit 0;
done