Compare commits
59 Commits
master
...
stationeer
Author | SHA1 | Date | |
---|---|---|---|
8001d4983b | |||
d79194eaeb | |||
f36906ea2a | |||
2cc611cbc3 | |||
58e6b96b48 | |||
17f3c42eff | |||
e75dce5905 | |||
7bd9f725d6 | |||
6144991342 | |||
fc30ba0e5c | |||
244cca033b | |||
c019cd356e | |||
f46bc69a7e | |||
21cd5752bd | |||
8988c4c91e | |||
4957a42a13 | |||
e806676dd0
|
|||
247c2cdabc
|
|||
5494f0a27f
|
|||
9c8d8acff3
|
|||
c4efccf1f5
|
|||
549b5dccda
|
|||
654b662ecf
|
|||
1deab2c601
|
|||
363e7d3023
|
|||
c125c65770
|
|||
662e129e04
|
|||
540bcb9088
|
|||
d738eabeef
|
|||
d9e40876cb
|
|||
c5ad79c18b
|
|||
1c84355305 | |||
f365810f12 | |||
28394c43d0 | |||
7297c7d9ef | |||
f48368b220 | |||
34201c67df | |||
facdfe8886 | |||
70597f761c | |||
d50f10f958 | |||
3182749046 | |||
3662b6e6d1 | |||
0bf9735430 | |||
928bcd589c | |||
d454585586 | |||
d6c7b68b01 | |||
cc9fef8c94 | |||
5ac311ace7 | |||
6a92b07c61 | |||
7d0b2023cc | |||
a9333a0352 | |||
f3b120f82d | |||
b380bc7f24 | |||
c463e82651 | |||
1c1fbc6826 | |||
36be851863 | |||
1cb61cf7ec | |||
adc4ac4616 | |||
c96b1c14b8 |
33
Dockerfile
33
Dockerfile
@@ -1,36 +1,37 @@
|
||||
FROM ubuntu
|
||||
FROM ich777/debian-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 --no-install-recommends lib32gcc-s1 screen && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV DATA_DIR="/serverdata"
|
||||
ENV STEAMCMD_DIR="${DATA_DIR}/steamcmd"
|
||||
ENV SERVER_DIR="${DATA_DIR}/serverfiles"
|
||||
ENV GAME_ID="template"
|
||||
ENV GAME_NAME="template"
|
||||
ENV GAME_PARAMS="template"
|
||||
ENV GAME_PARAMS="-difficulty easy -loadlatest Mars Mars"
|
||||
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
|
||||
|
||||
#Server Start
|
||||
ENTRYPOINT ["/opt/scripts/start-server.sh"]
|
||||
ENTRYPOINT ["/opt/scripts/start.sh"]
|
41
README.md
41
README.md
@@ -1,45 +1,38 @@
|
||||
# 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 Stationeers and run it.
|
||||
|
||||
**Configuration:** To configure your server edit the file 'settings.xml' which lives in the main directory from the container (please don't forget to stop the container before editing the file).
|
||||
|
||||
**Update Notice:** Simply restart the container if a newer version of the game is available.
|
||||
|
||||
## Env params
|
||||
| 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: '600760 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 600760 |
|
||||
| GAME_PARAMS | Values to start the server | -difficulty easy -loadlatest Mars Mars |
|
||||
| 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 | blank |
|
||||
| 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 Stationeers -d \
|
||||
-p 27015:27015/udp -p 27500:27500/udp \
|
||||
--env 'GAME_ID=600760' \
|
||||
--env 'GAME_PARAMS=-difficulty easy -loadlatest Mars Mars' \
|
||||
--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/stationeers:/serverdata/serverfiles \
|
||||
ich777/steamcmd:stationeers
|
||||
```
|
||||
>**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/
|
11
config/default.ini
Normal file
11
config/default.ini
Normal file
@@ -0,0 +1,11 @@
|
||||
[SERVER]
|
||||
SERVERNAME=Docker Stationeers
|
||||
GAMEPORT=27500
|
||||
UPDATERPORT=27015
|
||||
PASSWORD=Docker
|
||||
MAPNAME=Moon
|
||||
DESCRIPTION=Stationeers Docker for Unraid
|
||||
MAXPLAYER=20
|
||||
|
||||
[RCON]
|
||||
RCONPASSWORD=DockerAdmin
|
128
config/settings.xml
Normal file
128
config/settings.xml
Normal file
@@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<SettingData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<SettingsVersion>0.2.4677.21598</SettingsVersion>
|
||||
<ShowFps>false</ShowFps>
|
||||
<ShowLatency>false</ShowLatency>
|
||||
<AutoSave>true</AutoSave>
|
||||
<SaveInterval>300</SaveInterval>
|
||||
<SavePath>/serverdata/serverfiles/saves</SavePath>
|
||||
<HUDScale>50</HUDScale>
|
||||
<TooltipOpacity>0.95</TooltipOpacity>
|
||||
<IngamePortrait>true</IngamePortrait>
|
||||
<ExtendedTooltips>true</ExtendedTooltips>
|
||||
<ChatFadeTimer>10</ChatFadeTimer>
|
||||
<DayLength>20</DayLength>
|
||||
<LegacyInventory>false</LegacyInventory>
|
||||
<ShowSlotToolTips>true</ShowSlotToolTips>
|
||||
<ResearchPoolKey>ResearchOff</ResearchPoolKey>
|
||||
<DeleteSkeletonOnDecay>false</DeleteSkeletonOnDecay>
|
||||
<Monitor>1</Monitor>
|
||||
<ScreenWidth>1920</ScreenWidth>
|
||||
<ScreenHeight>1080</ScreenHeight>
|
||||
<RefreshRate>60</RefreshRate>
|
||||
<GraphicQuality>Fantastic</GraphicQuality>
|
||||
<TextureQuality>Very High</TextureQuality>
|
||||
<FullScreen>true</FullScreen>
|
||||
<Vsync>false</Vsync>
|
||||
<Shadows>High</Shadows>
|
||||
<ShadowResolution>Very High</ShadowResolution>
|
||||
<ShadowDistance>100</ShadowDistance>
|
||||
<LightShadowDistance>50</LightShadowDistance>
|
||||
<RoomControlTickSpeed>1</RoomControlTickSpeed>
|
||||
<ShadowNearPlaneOffset>0.2</ShadowNearPlaneOffset>
|
||||
<ShadowCascades>4</ShadowCascades>
|
||||
<ThingShadowMode>High</ThingShadowMode>
|
||||
<WorldOrigin>false</WorldOrigin>
|
||||
<Brightness>100</Brightness>
|
||||
<FieldOfView>70</FieldOfView>
|
||||
<ColorBlind>None</ColorBlind>
|
||||
<ParticleQuality>High</ParticleQuality>
|
||||
<SoftParticles>true</SoftParticles>
|
||||
<EnvironmentElements>true</EnvironmentElements>
|
||||
<ExtendedTerrain>true</ExtendedTerrain>
|
||||
<VolumeLight>Full</VolumeLight>
|
||||
<PixelLightCount>8</PixelLightCount>
|
||||
<MaxThingLights>256</MaxThingLights>
|
||||
<Antialiasing>SSAA</Antialiasing>
|
||||
<FrameLock>Off</FrameLock>
|
||||
<AtmosphericScattering>true</AtmosphericScattering>
|
||||
<AmbientOcclusion>Ultra</AmbientOcclusion>
|
||||
<LensFlares>true</LensFlares>
|
||||
<ChunkRenderDistance>150</ChunkRenderDistance>
|
||||
<MineableRenderDistance>45</MineableRenderDistance>
|
||||
<ThingRenderDistance>12</ThingRenderDistance>
|
||||
<DisableWaterVisualizer>true</DisableWaterVisualizer>
|
||||
<Clouds>false</Clouds>
|
||||
<TerrainClutter>false</TerrainClutter>
|
||||
<TerrainClutterMultiplier>1</TerrainClutterMultiplier>
|
||||
<DoubleClickDelay>0.18</DoubleClickDelay>
|
||||
<HelmetOverlay>true</HelmetOverlay>
|
||||
<WeatherEventQuality>High</WeatherEventQuality>
|
||||
<MasterVolume>100</MasterVolume>
|
||||
<SoundVolume>100</SoundVolume>
|
||||
<VoiceNotificationVolume>90</VoiceNotificationVolume>
|
||||
<MusicVolume>100</MusicVolume>
|
||||
<InterfaceVolume>100</InterfaceVolume>
|
||||
<VirtualVoices>1024</VirtualVoices>
|
||||
<RealVoices>64</RealVoices>
|
||||
<UserSpeakerMode>Stereo</UserSpeakerMode>
|
||||
<ServerName>Stationeers Docker</ServerName>
|
||||
<StartLocalHost>true</StartLocalHost>
|
||||
<ServerVisible>true</ServerVisible>
|
||||
<ServerPassword>Docker</ServerPassword>
|
||||
<AdminPassword />
|
||||
<ServerAuthSecret>adminDocker</ServerAuthSecret>
|
||||
<ServerMaxPlayers>15</ServerMaxPlayers>
|
||||
<UpdatePort>27015</UpdatePort>
|
||||
<GamePort>27500</GamePort>
|
||||
<UPNPEnabled>true</UPNPEnabled>
|
||||
<UseSteamP2P>true</UseSteamP2P>
|
||||
<DisconnectTimeout>10000</DisconnectTimeout>
|
||||
<NetworkDebugFrequency>500</NetworkDebugFrequency>
|
||||
<LocalIpAddress>0.0.0.0</LocalIpAddress>
|
||||
<AutoPauseServer>true</AutoPauseServer>
|
||||
<LanguageCode>EN</LanguageCode>
|
||||
<VoiceLanguageCode>EN</VoiceLanguageCode>
|
||||
<Voice>false</Voice>
|
||||
<PopupChat>true</PopupChat>
|
||||
<CameraSensitivity>50</CameraSensitivity>
|
||||
<Keyboard />
|
||||
<InvertMouse>false</InvertMouse>
|
||||
<InvertMouseWheelInventory>false</InvertMouseWheelInventory>
|
||||
<MenuLite>false</MenuLite>
|
||||
<MouseWheelZoom>true</MouseWheelZoom>
|
||||
<FirstRun>true</FirstRun>
|
||||
<VoiceNotifications />
|
||||
<CompletedTutorials />
|
||||
<CompletedScenarios />
|
||||
<VerticalMovementAxis>
|
||||
<Controller>None</Controller>
|
||||
<Axis>None</Axis>
|
||||
</VerticalMovementAxis>
|
||||
<HorizontalMovementAxis>
|
||||
<Controller>None</Controller>
|
||||
<Axis>None</Axis>
|
||||
</HorizontalMovementAxis>
|
||||
<ForwardMovementAxis>
|
||||
<Controller>None</Controller>
|
||||
<Axis>None</Axis>
|
||||
</ForwardMovementAxis>
|
||||
<VerticalLookAxis>
|
||||
<Controller>None</Controller>
|
||||
<Axis>None</Axis>
|
||||
</VerticalLookAxis>
|
||||
<HorizontalLookAxis>
|
||||
<Controller>None</Controller>
|
||||
<Axis>None</Axis>
|
||||
</HorizontalLookAxis>
|
||||
<UseCustomWorkThreadsCount>false</UseCustomWorkThreadsCount>
|
||||
<MinWorkerThreads>12</MinWorkerThreads>
|
||||
<MinCompletionPortThreads>12</MinCompletionPortThreads>
|
||||
<MaxWorkerThreads>140</MaxWorkerThreads>
|
||||
<MaxCompletionPortThreads>70</MaxCompletionPortThreads>
|
||||
<CoroutineTimeBudget>1</CoroutineTimeBudget>
|
||||
<SmoothTerrain>false</SmoothTerrain>
|
||||
<SmoothTerrainAngle>60</SmoothTerrainAngle>
|
||||
<ConsoleBufferSize>1024</ConsoleBufferSize>
|
||||
<LegacyCpu>false</LegacyCpu>
|
||||
</SettingData>
|
@@ -13,48 +13,65 @@ 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 \
|
||||
+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 \
|
||||
+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 \
|
||||
+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 \
|
||||
+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}
|
||||
echo "---Checking if 'settings.xml' is present---"
|
||||
if [ ! -f ${SERVER_DIR}/settings.xml ]; then
|
||||
cd ${SERVER_DIR}
|
||||
if wget -q -O ${SERVER_DIR}/settings.xml --show-progress --progress=bar:force:noscroll https://raw.githubusercontent.com/ich777/docker-steamcmd-server/stationeers/config/settings.xml ; then
|
||||
echo "---Sucessfully downloaded configuration file 'settings.xml'---"
|
||||
else
|
||||
echo "---Something went wrong, can't download 'settings.xml', putting server in sleep mode---"
|
||||
sleep infinity
|
||||
fi
|
||||
else
|
||||
echo "---Configuration file 'settings.xml' found---"
|
||||
fi
|
||||
chmod -R ${DATA_PERM} ${DATA_DIR}
|
||||
find $SERVER_DIR -name "masterLog.*" -exec rm -f {} \;
|
||||
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}/rocketstation_DedicatedServer.x86_64 ]; then
|
||||
echo "---Something went wrong, can't find the executable, putting container into sleep mode!---"
|
||||
sleep infinity
|
||||
else
|
||||
${SERVER_DIR}/rocketstation_DedicatedServer.x86_64 ${GAME_PARAMS} -settingspath ${SERVER_DIR}/settings.xml
|
||||
fi
|
41
scripts/start.sh
Normal file
41
scripts/start.sh
Normal file
@@ -0,0 +1,41 @@
|
||||
#!/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 -R ${UID}:${GID} ${DATA_DIR}
|
||||
|
||||
echo "---Starting...---"
|
||||
term_handler() {
|
||||
kill -SIGKILL $(pidof rocketstation_DedicatedServer.x86_64)
|
||||
tail --pid=$(pidof rocketstation_DedicatedServer.x86_64) -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