Compare commits
91 Commits
citadelfwf
...
icarus
Author | SHA1 | Date | |
---|---|---|---|
b993aff750 | |||
c47afc4004 | |||
2c5647bec3 | |||
f36ff41c07 | |||
4b4c185144 | |||
8acf4da141 | |||
9e9520843e | |||
1f26a0b6f6 | |||
99526955f3 | |||
b647072e5b | |||
1063f54e01 | |||
c9e739186b | |||
55bcab89ce | |||
966337fc4b | |||
f8a54ab606 | |||
858da29aeb | |||
ba165b8b65 | |||
b3197dabb4 | |||
bd80747663 | |||
a10ea0d4e4 | |||
096b93dcf0 | |||
ea60bf9a6f | |||
9c9b88f426 | |||
82a7371b15 | |||
e91035f770 | |||
4aad192c48 | |||
6d1b2eb5fd | |||
165c6c989e | |||
88b76e6484 | |||
bc859f9a43 | |||
fa79c36fe1 | |||
aadf55bfae | |||
72cae3b72f | |||
3c8727bf07 | |||
ba5cc2eda2 | |||
4b26b7606b | |||
ec025e72fe | |||
ed846924cf | |||
bdbf35c4a8 | |||
26d8027eac | |||
e77a8bcfe6 | |||
ca0c8fefe6
|
|||
e7c87bd8f1
|
|||
2432940e23
|
|||
89598a9710
|
|||
83992eb6cb
|
|||
5e4b466e76
|
|||
72a0e28c71
|
|||
82dea2c6af
|
|||
16d782c55e
|
|||
58f34acf41
|
|||
f0ea49bad6 | |||
d25c781c22 | |||
056f05756a | |||
1c79a312d2 | |||
41df27576a | |||
ad3762e4c0 | |||
821c430387 | |||
37e416a7b1 | |||
8d4d03b438 | |||
20a77cae00 | |||
2e9463a721 | |||
d62dca657f | |||
a7a8798ea8 | |||
94a9d103b6 | |||
25509af841 | |||
a82efe30be | |||
704525d91c | |||
252605ca63 | |||
eb266c39f6 | |||
57865f566b | |||
d22246d105 | |||
f0137cf7b6 | |||
0f592029f1 | |||
8d283cfe53 | |||
becf5dc1a7 | |||
4278fc8884 | |||
700351ff61 | |||
ed40f24e06 | |||
8b70b11884 | |||
d71ca52efe | |||
075799da02 | |||
1fea73c677 | |||
d8471aadf3 | |||
500275b668 | |||
f603c5a482 | |||
20e2a492b6 | |||
1af4324c74 | |||
83c8ce9cc4 | |||
5fe96b0b12 | |||
d755ec14fa |
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
github: ich777
|
34
Dockerfile
34
Dockerfile
@@ -1,9 +1,13 @@
|
||||
FROM ubuntu
|
||||
FROM ich777/winehq-baseimage
|
||||
|
||||
MAINTAINER ich777
|
||||
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 -y install lib32gcc1 libc6-i386 wget language-pack-en lib32stdc++6
|
||||
RUN apt-get update && \
|
||||
apt-get -y install lib32gcc-s1 winbind xvfb screen cabextract && \
|
||||
wget -q -O /usr/bin/winetricks https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks && \
|
||||
chmod +x /usr/bin/winetricks && chown 755 /usr/bin/winetricks && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV DATA_DIR="/serverdata"
|
||||
ENV STEAMCMD_DIR="${DATA_DIR}/steamcmd"
|
||||
@@ -13,24 +17,24 @@ ENV GAME_NAME="template"
|
||||
ENV GAME_PARAMS="template"
|
||||
ENV GAME_PORT=27015
|
||||
ENV VALIDATE=""
|
||||
ENV UMASK=000
|
||||
ENV UID=99
|
||||
ENV GID=100
|
||||
ENV USERNAME=""
|
||||
ENV PASSWRD=""
|
||||
ENV USER="steam"
|
||||
ENV DATA_PERM=770
|
||||
|
||||
RUN mkdir $DATA_DIR
|
||||
RUN mkdir $STEAMCMD_DIR
|
||||
RUN mkdir $SERVER_DIR
|
||||
RUN useradd -d $DATA_DIR -s /bin/bash --uid $UID --gid $GID steam
|
||||
RUN chown -R steam $DATA_DIR
|
||||
|
||||
RUN ulimit -n 2048
|
||||
RUN mkdir $DATA_DIR && \
|
||||
mkdir $STEAMCMD_DIR && \
|
||||
mkdir $SERVER_DIR && \
|
||||
useradd -d $DATA_DIR -s /bin/bash $USER && \
|
||||
chown -R $USER $DATA_DIR && \
|
||||
ulimit -n 2048
|
||||
|
||||
ADD /scripts/ /opt/scripts/
|
||||
RUN chmod -R 770 /opt/scripts/
|
||||
RUN chown -R steam /opt/scripts
|
||||
|
||||
USER steam
|
||||
COPY ServerSettings.ini /opt/ServerSettings.ini
|
||||
|
||||
#Server Start
|
||||
ENTRYPOINT ["/opt/scripts/start-server.sh"]
|
||||
ENTRYPOINT ["/opt/scripts/start.sh"]
|
47
README.md
47
README.md
@@ -1,45 +1,44 @@
|
||||
# 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 Icarus and run it.
|
||||
|
||||
## Env params
|
||||
Initial server configuration:
|
||||
**Servername:** Icarus Docker **Password:** Docker **AdminPassword:** adminDocker
|
||||
|
||||
**ATTENTION:** First startup can take very long since it downloads the gameserver files and it also installs the runtimes which can take quite some time!
|
||||
|
||||
**First Start Notice:** On First startup the container installs the necessary runtimes and it might seem that the container hangs but please be patient since the installation can take very long on some systems (5 minutes+).
|
||||
|
||||
Update Notice: Simply restart the container if a newer version of the game is available.
|
||||
|
||||
## Example Env params for CS:Source
|
||||
| Name | Value | Example |
|
||||
| --- | --- | --- |
|
||||
| STEAMCMD_DIR | Folder for SteamCMD | /serverdata/steamcmd |
|
||||
| SERVER_DIR | Folder for gamefile | /serverdata/serverfiles |
|
||||
| GAME_ID | SteamID for server | 232330 |
|
||||
| GAME_NAME | SRCDS gamename | cstrike |
|
||||
| GAME_PARAMS | Values to start the server | -secure +maxplayers 32 +map de_dust2 |
|
||||
| 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: '2089300 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 2089300 |
|
||||
| GAME_PARAMS | Values to start the server | -SteamServerName="Icarus Docker" -Port=17777 -QueryPort=27015 |
|
||||
| UID | User Identifier | 99 |
|
||||
| GID | Group Identifier | 100 |
|
||||
| GAME_PORT | Port the server will be running on | 27015 |
|
||||
| VALIDATE | Validates the game data | true |
|
||||
| VALIDATE | Validates the game data | false |
|
||||
| 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, 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
|
||||
```
|
||||
docker run --name CSSource -d \
|
||||
-p 27015:27015 -p 27015:27015/udp \
|
||||
--env 'GAME_ID=232330' \
|
||||
--env 'GAME_NAME=cstrike' \
|
||||
--env 'GAME_PORT=27015' \
|
||||
--env 'GAME_PARAMS=-secure +maxplayers 32 +map de_dust2' \
|
||||
docker run --name Icarus -d \
|
||||
-p 17777:17777/udp -p 27015:27015/udp \
|
||||
--env 'GAME_ID=2089300' \
|
||||
--env 'GAME_PARAMS=-SteamServerName="Icarus Docker" -Port=17777 -QueryPort=27015' \
|
||||
--env 'UID=99' \
|
||||
--env 'GID=100' \
|
||||
--volume /mnt/user/appdata/steamcmd:/serverdata/steamcmd \
|
||||
--volume /mnt/user/appdata/cstrikesource:/serverdata/serverfiles \
|
||||
ich777/steamcmd:latest
|
||||
--volume /path/to/steamcmd:/serverdata/steamcmd \
|
||||
--volume /path/to/icarus:/serverdata/serverfiles \
|
||||
ich777/steamcmd:icarus
|
||||
```
|
||||
>**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 is forked from mattieserver, thank you for this wonderfull Docker.
|
||||
|
||||
#### Support Thread: https://forums.unraid.net/topic/79530-support-ich777-gameserver-dockers/
|
13
ServerSettings.ini
Normal file
13
ServerSettings.ini
Normal file
@@ -0,0 +1,13 @@
|
||||
[/Script/Icarus.DedicatedServerSettings]
|
||||
SessionName=Icarus Docker
|
||||
JoinPassword=Docker
|
||||
MaxPlayers=8
|
||||
AdminPassword=adminDocker
|
||||
ShutdownIfNotJoinedFor=300.000000
|
||||
ShutdownIfEmptyFor=300.000000
|
||||
AllowNonAdminsToLaunchProspects=True
|
||||
AllowNonAdminsToDeleteProspects=False
|
||||
LoadProspect=
|
||||
CreateProspect=
|
||||
ResumeProspect=True
|
||||
LastProspectName=
|
4
scripts/start-Xvfb.sh
Normal file
4
scripts/start-Xvfb.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
until Xvfb :99 -screen scrn 640x480x16; do
|
||||
echo "Xvfb server crashed with exit code $?. Respawning.." >&2
|
||||
sleep 1
|
||||
done
|
@@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
export DISPLAY=:99
|
||||
if [ ! -f ${STEAMCMD_DIR}/steamcmd.sh ]; then
|
||||
echo "SteamCMD not found!"
|
||||
wget -q -O ${STEAMCMD_DIR}/steamcmd_linux.tar.gz http://media.steampowered.com/client/steamcmd_linux.tar.gz
|
||||
@@ -13,48 +14,128 @@ if [ "${USERNAME}" == "" ]; then
|
||||
+quit
|
||||
else
|
||||
${STEAMCMD_DIR}/steamcmd.sh \
|
||||
+login $USERNAME $PASSWRD \
|
||||
+login ${USERNAME} ${PASSWRD} \
|
||||
+quit
|
||||
fi
|
||||
|
||||
echo "---Update Server---"
|
||||
if [ "${USERNAME}" == "" ]; then
|
||||
if [ "${VALIDATE}" == "true" ]; then
|
||||
echo "---Validating installation---"
|
||||
${STEAMCMD_DIR}/steamcmd.sh \
|
||||
+@sSteamCmdForcePlatformType windows \
|
||||
+force_install_dir ${SERVER_DIR} \
|
||||
+login anonymous \
|
||||
+force_install_dir $SERVER_DIR \
|
||||
+app_update $GAME_ID validate \
|
||||
+app_update ${GAME_ID} validate \
|
||||
+quit
|
||||
else
|
||||
${STEAMCMD_DIR}/steamcmd.sh \
|
||||
+@sSteamCmdForcePlatformType windows \
|
||||
+force_install_dir ${SERVER_DIR} \
|
||||
+login anonymous \
|
||||
+force_install_dir $SERVER_DIR \
|
||||
+app_update $GAME_ID \
|
||||
+app_update ${GAME_ID} \
|
||||
+quit
|
||||
fi
|
||||
else
|
||||
if [ "${VALIDATE}" == "true" ]; then
|
||||
echo "---Validating installation---"
|
||||
${STEAMCMD_DIR}/steamcmd.sh \
|
||||
+login $USERNAME $PASSWRD \
|
||||
+force_install_dir $SERVER_DIR \
|
||||
+app_update $GAME_ID validate \
|
||||
+@sSteamCmdForcePlatformType windows \
|
||||
+force_install_dir ${SERVER_DIR} \
|
||||
+login ${USERNAME} ${PASSWRD} \
|
||||
+app_update ${GAME_ID} validate \
|
||||
+quit
|
||||
else
|
||||
${STEAMCMD_DIR}/steamcmd.sh \
|
||||
+login $USERNAME $PASSWRD \
|
||||
+force_install_dir $SERVER_DIR \
|
||||
+app_update $GAME_ID \
|
||||
+@sSteamCmdForcePlatformType windows \
|
||||
+force_install_dir ${SERVER_DIR} \
|
||||
+login ${USERNAME} ${PASSWRD} \
|
||||
+app_update ${GAME_ID} \
|
||||
+quit
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "---Prepare Server---"
|
||||
mkdir ${DATA_DIR}/.steam/sdk32
|
||||
cp -R ${SERVER_DIR}/bin/* ${DATA_DIR}/.steam/sdk32/
|
||||
chmod -R 770 ${DATA_DIR}
|
||||
export WINEARCH=win64
|
||||
export WINEPREFIX=/serverdata/serverfiles/WINE64
|
||||
echo "---Checking if WINE workdirectory is present---"
|
||||
if [ ! -d ${SERVER_DIR}/WINE64 ]; then
|
||||
echo "---WINE workdirectory not found, creating please wait...---"
|
||||
mkdir ${SERVER_DIR}/WINE64
|
||||
else
|
||||
echo "---WINE workdirectory found---"
|
||||
fi
|
||||
echo "---Checking if WINE is properly installed---"
|
||||
if [ ! -d ${SERVER_DIR}/WINE64/drive_c/windows ]; then
|
||||
echo "---Setting up WINE---"
|
||||
cd ${SERVER_DIR}
|
||||
winecfg > /dev/null 2>&1
|
||||
sleep 15
|
||||
wineserver -k >/dev/null 2>&1
|
||||
else
|
||||
echo "---WINE properly set up---"
|
||||
fi
|
||||
|
||||
if [ -f ${SERVER_DIR}/runtimes ]; then
|
||||
rm -f ${SERVER_DIR}/runtimes
|
||||
touch ${SERVER_DIR}/WINE64/runtimes
|
||||
fi
|
||||
|
||||
echo "---Checking if runtimes are installed---"
|
||||
if [ ! -f ${SERVER_DIR}/WINE64/runtimes ]; then
|
||||
echo "---Runtimes not installed, please wait installing...---"
|
||||
mkdir -p ${DATA_DIR}/.cache/winetricks
|
||||
find /tmp -name ".X99*" -exec rm -f {} \; > /dev/null 2>&1
|
||||
/opt/scripts/start-Xvfb.sh 2>/dev/null &
|
||||
echo "---...this can take some time...---"
|
||||
sleep 5
|
||||
timeout 10m /usr/bin/winetricks -q dotnet45 2>/dev/null
|
||||
timeout 3m /usr/bin/winetricks -q vcrun2019 2>/dev/null
|
||||
wine64 ${SERVER_DIR}/IcarusServer.exe -log ${GAME_PARAMS} >/dev/null 2&>1 &
|
||||
sleep 10
|
||||
wineserver -k >/dev/null 2>&1
|
||||
kill $(pidof Xvfb) 2>/dev/null
|
||||
touch ${SERVER_DIR}/WINE64/runtimes
|
||||
echo "---Installation from runtimes finished!---"
|
||||
else
|
||||
echo "---Runtimes found! Continuing...---"
|
||||
fi
|
||||
|
||||
echo "---Looking 'ServerSettings.ini' file is in place---"
|
||||
if [ ! -f ${SERVER_DIR}/Icarus/Saved/Config/WindowsServer/ServerSettings.ini ]; then
|
||||
echo "---'ServerSettings.ini' not found, copying template...---"
|
||||
if [ ! -d ${SERVER_DIR}/Icarus/Saved/Config/WindowsServer ]; then
|
||||
mkdir -p ${SERVER_DIR}/Icarus/Saved/Config/WindowsServer
|
||||
fi
|
||||
cp /opt/ServerSettings.ini ${SERVER_DIR}/Icarus/Saved/Config/WindowsServer/
|
||||
else
|
||||
echo "---'ServerSettings.ini' found---"
|
||||
fi
|
||||
echo "---Checking for old display lock files---"
|
||||
find /tmp -name ".X99*" -exec rm -f {} \; > /dev/null 2>&1
|
||||
chmod -R ${DATA_PERM} ${DATA_DIR}
|
||||
|
||||
echo "---Starting Xvfb server---"
|
||||
screen -S Xvfb -d -m /opt/scripts/start-Xvfb.sh
|
||||
sleep 5
|
||||
|
||||
chmod -R ${DATA_PERM} ${DATA_DIR}
|
||||
echo "---Server ready---"
|
||||
|
||||
echo "---Start Server---"
|
||||
${SERVER_DIR}/srcds_run -game $GAME_NAME $GAME_PARAMS -console +port $GAME_PORT
|
||||
|
||||
|
||||
|
||||
cd ${SERVER_DIR}
|
||||
if [ ! -f ${SERVER_DIR}/IcarusServer.exe ]; then
|
||||
echo "---Something went wrong, can't find the executable, putting container into sleep mode!---"
|
||||
sleep infinity
|
||||
else
|
||||
screen -S Icarus -d -m wine64 ${SERVER_DIR}/IcarusServer.exe -log ${GAME_PARAMS}
|
||||
if [ ! -f ${SERVER_DIR}/Icarus/Saved/Logs/Icarus.log ]; then
|
||||
if [ ! -d ${SERVER_DIR}/Icarus/Saved/Logs ]; then
|
||||
mkdir -p ${SERVER_DIR}/Icarus/Saved/Logs
|
||||
fi
|
||||
touch ${SERVER_DIR}/Icarus/Saved/Logs/Icarus.log
|
||||
fi
|
||||
sleep 2
|
||||
/opt/scripts/start-watchdog.sh &
|
||||
tail -n 9999 -f ${SERVER_DIR}/Icarus/Saved/Logs/Icarus.log
|
||||
fi
|
8
scripts/start-watchdog.sh
Normal file
8
scripts/start-watchdog.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
killpid="$(pidof IcarusServer.exe)"
|
||||
while true
|
||||
do
|
||||
tail --pid=$killpid -f /dev/null
|
||||
kill "$(pidof tail)"
|
||||
exit 0
|
||||
done
|
44
scripts/start.sh
Normal file
44
scripts/start.sh
Normal file
@@ -0,0 +1,44 @@
|
||||
#!/bin/bash
|
||||
echo "---Ensuring UID: ${UID} matches user---"
|
||||
usermod -u ${UID} ${USER}
|
||||
echo "---Ensuring GID: ${GID} matches user---"
|
||||
groupmod -g ${GID} ${USER} > /dev/null 2>&1 ||:
|
||||
usermod -g ${GID} ${USER}
|
||||
echo "---Setting umask to ${UMASK}---"
|
||||
umask ${UMASK}
|
||||
|
||||
echo "---Checking for optional scripts---"
|
||||
cp -f /opt/custom/user.sh /opt/scripts/start-user.sh > /dev/null 2>&1 ||:
|
||||
cp -f /opt/scripts/user.sh /opt/scripts/start-user.sh > /dev/null 2>&1 ||:
|
||||
|
||||
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
|
||||
echo "---No optional script found, continuing---"
|
||||
fi
|
||||
|
||||
echo "---Taking ownership of data...---"
|
||||
chown -R root:${GID} /opt/scripts
|
||||
chmod -R 750 /opt/scripts
|
||||
chown ${UID}:${GID} /opt/ServerSettings.ini
|
||||
chmod 750 /opt/ServerSettings.ini
|
||||
chown -R ${UID}:${GID} ${DATA_DIR}
|
||||
|
||||
echo "---Starting...---"
|
||||
term_handler() {
|
||||
kill -SIGINT $(pidof IcarusServer.exe)
|
||||
tail --pid=$(pidof IcarusServer.exe) -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