Compare commits

...

7 Commits

Author SHA1 Message Date
825f9bd13b Update Dockerfile 2023-06-14 13:30:39 +02:00
ae4a7c8997 „scripts/start.sh“ ändern 2022-10-25 11:03:47 +02:00
eed58fe491 „Dockerfile“ ändern 2022-05-06 10:21:36 +02:00
da5d28ba7d „README.md“ ändern 2022-04-18 11:12:40 +02:00
e44d0b56c1 „scripts/start-server.sh“ ändern 2022-04-18 11:09:45 +02:00
4dc430af91 „scripts/start.sh“ ändern 2022-04-18 11:09:20 +02:00
187e454834 „Dockerfile“ ändern 2022-04-18 11:08:59 +02:00
4 changed files with 58 additions and 40 deletions

View File

@@ -1,9 +1,10 @@
FROM ich777/debian-baseimage FROM ich777/debian-baseimage:bullseye_amd64
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 libc6-i386 lib32stdc++6 && \ apt-get -y install --no-install-recommends lib32gcc-s1 libc6-i386 lib32stdc++6 && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
ENV DATA_DIR="/serverdata" ENV DATA_DIR="/serverdata"

View File

@@ -1,45 +1,42 @@
# 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 Deatmatch Classic 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: '90 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 90 +app_set_config '90 mod dmc' |
| GAME_NAME | SRCDS gamename | cstrike | | GAME_MOD | SRCDS gamename | 90 mod dmc |
| GAME_PARAMS | Values to start the server | -secure +maxplayers 32 +map de_dust2 | | GAME_NAME | SRCDS gamename | dmc |
| GAME_PARAMS | Values to start the server | -secure +maxplayers 32 +map dmc_dm3.bsp |
| 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 |
| VALIDATE | Validates the game data | true | | VALIDATE | Validates the game data | blank |
| 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 DMClassic -d \
-p 27015:27015 -p 27015:27015/udp \ -p 27015:27015 -p 27015:27015/udp \
--env 'GAME_ID=232330' \ --env 'GAME_ID=90 +app_set_config '90 mod dmc'' \
--env 'GAME_NAME=cstrike' \ --env 'GAME_MOD=90 mod dmc' \
--env 'GAME_NAME=dmc' \
--env 'GAME_PORT=27015' \ --env 'GAME_PORT=27015' \
--env 'GAME_PARAMS=-secure +maxplayers 32 +map de_dust2' \ --env 'GAME_PARAMS=-secure +maxplayers 32 +map dmc_dm3.bsp' \
--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/dmclassic:/serverdata/serverfiles \
ich777/steamcmd:latest ich777/steamcmd:dmclassic
``` ```
>**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,15 +22,15 @@ 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_set_config ${GAME_MOD} \ +app_set_config ${GAME_MOD} \
+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_set_config ${GAME_MOD} \ +app_set_config ${GAME_MOD} \
+app_update ${GAME_ID} \ +app_update ${GAME_ID} \
+quit +quit
@@ -39,15 +39,15 @@ 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_set_config ${GAME_MOD} \ +app_set_config ${GAME_MOD} \
+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_set_config ${GAME_MOD} \ +app_set_config ${GAME_MOD} \
+app_update ${GAME_ID} \ +app_update ${GAME_ID} \
+quit +quit
@@ -59,15 +59,15 @@ if [ ! -d ${SERVER_DIR}/dmc ]; then
echo "---Not everything is installed correctly, trying again---" echo "---Not everything is installed correctly, trying again---"
if [ "${USERNAME}" == "" ]; then if [ "${USERNAME}" == "" ]; then
${STEAMCMD_DIR}/steamcmd.sh \ ${STEAMCMD_DIR}/steamcmd.sh \
+login anonymous \
+force_install_dir ${SERVER_DIR} \ +force_install_dir ${SERVER_DIR} \
+login anonymous \
+app_set_config ${GAME_MOD} \ +app_set_config ${GAME_MOD} \
+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_set_config ${GAME_MOD} \ +app_set_config ${GAME_MOD} \
+app_update ${GAME_ID} validate \ +app_update ${GAME_ID} validate \
+quit +quit

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