Compare commits
8 Commits
pvkii
...
postscript
Author | SHA1 | Date | |
---|---|---|---|
a58e781861 | |||
0bdab6d051
|
|||
0771318092
|
|||
4572e8c356
|
|||
8aaddd12c5
|
|||
2cd4f18b34
|
|||
06b2e6c4d0 | |||
c462756343 |
@@ -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 && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
ENV DATA_DIR="/serverdata"
|
ENV DATA_DIR="/serverdata"
|
||||||
|
39
README.md
39
README.md
@@ -1,45 +1,36 @@
|
|||||||
# 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 PostScriptum 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: '746200 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 746200 |
|
||||||
| GAME_NAME | SRCDS gamename | cstrike |
|
| GAME_PARAMS | Enter your start up commands for the server (for example the server admin: --admin [YOURsteamID64] e.g: '--admin 123456789123456789' without quotes). | Port=10027 QueryPort=10037 -log |
|
||||||
| 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 |
|
| 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 PostScriptum -d \
|
||||||
-p 27015:27015 -p 27015:27015/udp \
|
-p 10027:10027/udp -p 10037:10037/udp \
|
||||||
--env 'GAME_ID=232330' \
|
--env 'GAME_ID=746200' \
|
||||||
--env 'GAME_NAME=cstrike' \
|
--env 'GAME_PARAMS=Port=10027 QueryPort=10037 -log' \
|
||||||
--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/postscriptum:/serverdata/serverfiles \
|
||||||
ich777/steamcmd:latest
|
ich777/steamcmd:postscriptum
|
||||||
```
|
```
|
||||||
>**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/
|
@@ -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,24 @@ 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---"
|
||||||
|
export LD_LIBRARY_PATH="${SERVER_DIR}/linux64/:$LD_LIBRARY_PATH"
|
||||||
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}/PostScriptum/Binaries/Linux/PostScriptumServer ${GAME_PARAMS}
|
@@ -1,20 +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 "---Taking ownership of data...---"
|
||||||
|
chown -R root:${GID} /opt/scripts
|
||||||
|
chmod -R 750 /opt/scripts
|
||||||
|
chown -R ${UID}:${GID} ${DATA_DIR}
|
||||||
|
|
||||||
echo "---Starting...---"
|
echo "---Starting...---"
|
||||||
chown -R ${UID}:${GID} /opt/scripts
|
term_handler() {
|
||||||
su ${USER} -c "/opt/scripts/start-server.sh"
|
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
|
Reference in New Issue
Block a user