Compare commits

..

46 Commits

Author SHA1 Message Date
ed2d3034d3 README.md aktualisiert 2023-11-27 22:59:52 +01:00
9908cce8ba „scripts/start.sh“ ändern 2022-10-25 11:08:32 +02:00
8e33b6adaa „Dockerfile“ ändern 2022-05-06 10:49:46 +02:00
2906f40aed „scripts/start.sh“ ändern 2022-04-18 13:52:49 +02:00
0d14384f5e „scripts/start.sh“ ändern 2022-04-07 17:16:10 +02:00
f2990b3fb3 „README.md“ ändern 2022-01-17 07:54:47 +01:00
a5b395f74f „README.md“ ändern 2021-12-14 09:04:43 +01:00
2d5dd259ce „README.md“ ändern 2021-12-14 09:00:50 +01:00
59633661c9 „README.md“ ändern 2021-12-14 08:59:37 +01:00
622f590b70 „scripts/start-watchdog.sh“ hinzufügen 2021-12-14 08:33:24 +01:00
561ac1863d „scripts/start-server.sh“ ändern 2021-12-14 08:32:48 +01:00
6e8dda4877 „scripts/start.sh“ ändern 2021-12-14 08:30:28 +01:00
c4c7a0f952 „README.md“ ändern 2021-12-13 12:30:47 +01:00
2e46692284 „README.md“ ändern 2021-12-13 12:24:49 +01:00
82bf38aa8e „Dockerfile“ ändern 2021-12-11 07:59:12 +01:00
769bceba97 „scripts/start-server.sh“ ändern 2020-03-31 18:15:24 +02:00
0701805ce0 „config/servertest.ini“ löschen 2020-03-31 18:14:48 +02:00
9dd0f890ae „scripts/start.sh“ ändern 2020-03-31 18:10:00 +02:00
93f4a853bd „Dockerfile“ ändern 2020-03-31 18:04:53 +02:00
65675a133b „scripts/start-server.sh“ ändern 2020-03-31 17:48:47 +02:00
d47178c975 „.drone.yml“ löschen 2020-03-08 21:05:34 +01:00
9b4b62f08c „.drone.yml“ hinzufügen
All checks were successful
continuous-integration/drone/push Build is passing
2020-03-05 20:22:52 +01:00
aca9821cbe „scripts/start-server.sh“ ändern 2020-02-25 14:38:57 +01:00
eb8f1bd45c „scripts/start.sh“ hinzufügen 2020-02-25 14:38:39 +01:00
20451dfb55 „Dockerfile“ ändern 2020-02-25 14:28:12 +01:00
6b07e267dc switched to debian 2020-01-03 15:26:21 +01:00
a8f2528c0c „scripts/start-server.sh“ ändern 2020-01-03 15:15:30 +01:00
bf26b3ad92 „Dockerfile“ ändern 2020-01-03 15:14:25 +01:00
c9c68c7cc8 „scripts/start-server.sh“ ändern 2019-12-24 08:23:21 +01:00
9ab948f3de „scripts/start-server.sh“ ändern 2019-12-24 08:18:58 +01:00
379c4ee750 „Dockerfile“ ändern 2019-12-24 08:14:51 +01:00
dd5edf7afe Dateien hochladen nach „config“ 2019-12-24 08:14:18 +01:00
4cf4578606 „scripts/start-server.sh“ ändern 2019-12-21 22:03:15 +01:00
d7a177fbb5 „scripts/start-server.sh“ ändern 2019-12-21 21:49:28 +01:00
5ff2acc7cf „scripts/start-server.sh“ ändern 2019-12-21 21:49:11 +01:00
59743a9ce7 „scripts/start-server.sh“ ändern 2019-12-21 21:40:07 +01:00
9f8b559904 „Dockerfile“ ändern 2019-12-21 21:31:00 +01:00
3e12790cf9 „Dockerfile“ ändern 2019-12-21 21:30:05 +01:00
de7e0ba57a Dateien hochladen nach „config“ 2019-12-21 21:25:15 +01:00
8e19d9d3d0 „Dockerfile“ ändern 2019-12-21 20:44:09 +01:00
a0a0bb3726 „scripts/start-server.sh“ ändern 2019-12-21 20:43:51 +01:00
bf873f21f3 „scripts/start-server.sh“ ändern 2019-11-11 11:14:38 +01:00
3d7e698bc5 „scripts/start-server.sh“ ändern 2019-11-11 09:07:00 +01:00
a29620dd5a „scripts/start-server.sh“ ändern 2019-11-11 09:02:46 +01:00
8f13b8850d „Dockerfile“ ändern 2019-11-11 09:02:20 +01:00
7d0b2023cc „scripts/start-server.sh“ ändern 2019-06-12 22:36:54 +02:00
6 changed files with 53 additions and 139 deletions

View File

@@ -4,7 +4,7 @@ LABEL org.opencontainers.image.authors="admin@minenet.at"
LABEL org.opencontainers.image.source="https://github.com/ich777/docker-steamcmd-server"
RUN apt-get update && \
apt-get -y install --no-install-recommends lib32gcc-s1 libsqlite3-0 libgdiplus unzip && \
apt-get -y install --no-install-recommends lib32gcc-s1 screen unzip && \
rm -rf /var/lib/apt/lists/*
ENV DATA_DIR="/serverdata"
@@ -13,15 +13,8 @@ ENV SERVER_DIR="${DATA_DIR}/serverfiles"
ENV GAME_ID="template"
ENV GAME_NAME="template"
ENV GAME_PARAMS="template"
ENV GAME_PORT=28015
ENV QUERY_PORT=28016
ENV RCON_PORT=28017
ENV APP_PORT=28018
ENV SERVER_NAME="RustDocker"
ENV SERVER_DISCRIPTION="Simple Unraid Rust Docker"
ENV OXIDE_MOD="false"
ENV CARBON_MOD="false"
ENV FORCE_OXIDE_INSTALLATION="true"
ENV ADMIN_PWD="adminDocker"
ENV GAME_PORT=27015
ENV VALIDATE=""
ENV UMASK=000
ENV UID=99
@@ -34,7 +27,7 @@ ENV DATA_PERM=770
RUN mkdir $DATA_DIR && \
mkdir $STEAMCMD_DIR && \
mkdir $SERVER_DIR && \
useradd -d $DATA_DIR -s /bin/bash $USER && \
useradd -d $SERVER_DIR -s /bin/bash $USER && \
chown -R $USER $DATA_DIR && \
ulimit -n 2048
@@ -42,4 +35,4 @@ ADD /scripts/ /opt/scripts/
RUN chmod -R 770 /opt/scripts/
#Server Start
ENTRYPOINT ["/opt/scripts/start.sh"]
ENTRYPOINT ["/opt/scripts/start.sh"]

View File

@@ -1,5 +1,5 @@
# SteamCMD in Docker optimized for Unraid
This Docker will download and install SteamCMD. It will also install RUST and run it.
This Docker will download and install SteamCMD. It will also install Project Zomboid and run it.
**Update Notice:** Simply restart the container if a newer version of the game is available.
@@ -8,13 +8,8 @@ This Docker will download and install SteamCMD. It will also install RUST and ru
| --- | --- | --- |
| STEAMCMD_DIR | Folder for SteamCMD | /serverdata/steamcmd |
| SERVER_DIR | Folder for gamefile | /serverdata/serverfiles |
| GAME_ID | The GAME_ID that the container downloads at startup. If you want to use a beta version of the game enter this: '258550 -beta staging' or '258550 -beta prerelease' (without quotes). | 258550 |
| GAME_PARAMS | Enter here your extra game startup parameters if needed starting with (eg: '+rcon.port 27016 +rcon.password YOURPASSWORD' don't forget to add also a new port mapping with container and host port set to the corresponding RCON port) | +server.maxplayers 10 |
| SERVER_NAME | Name of the Server goes here | RustDockerServer |
| SERVER_DISCRIPTION | Server Description goes here | Simple Unraid Rust Docker Server |
| OXIDE_MOD | Set to 'true' (without quotes) to enable Oxide Mod, otherwise leave empty (the container will check on every start/restart if there is a newer version available). | false |
| CARBON_MOD | Set to 'true' (without quotes) to enable Carbon Mod, otherwise leave empty (the container will check on every start/restart if there is a newer version available). | false |
| GAME_PORT | Game port on which the server is running (has to match the port mapping in your container). | 28015 |
| 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: '380870 -beta YOURBRANCH' (without quotes, replace YOURBRANCH with the branch or version you want to install). | 380870 |
| ADMIN_PWD | Password to become admin ingame | adminDocker |
| UID | User Identifier | 99 |
| GID | Group Identifier | 100 |
| VALIDATE | Validates the game data | false |
@@ -23,22 +18,20 @@ This Docker will download and install SteamCMD. It will also install RUST and ru
## Run example
```
docker run --name RUST -d \
-p 28015:28015/udp \
--env 'GAME_ID=258550' \
--env 'SERVER_NAME=RustDockerServer' \
--env 'SERVER_DISCRIPTION=Simple Unraid Rust Docker Server' \
--env 'GAME_PARAMS=+server.maxplayers 10' \
--env 'GAME_PORT=28015' \
docker run --name ProjectZomboid -d \
-p 16261-16262:16261-16262/udp -p 27015:27015 \
--env 'GAME_ID=380870' \
--env 'ADMIN_PWD=adminDocker' \
--env 'UID=99' \
--env 'GID=100' \
--volume /path/to/steamcmd:/serverdata/steamcmd \
--volume /path/to/rust:/serverdata/serverfiles \
ich777/steamcmd:rust
--volume /path/to/projectzomboid:/serverdata/serverfiles \
ich777/steamcmd:projectzomboid
```
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/
### Support Thread: https://forums.unraid.net/topic/79530-support-ich777-gameserver-dockers/

BIN
config/cfg.zip Normal file

Binary file not shown.

View File

@@ -50,116 +50,36 @@ else
fi
fi
if [ "${OXIDE_MOD}" == "true" ] && [ "${CARBON_MOD}" == "true" ]; then
echo "---Oxide and Carbon mod enabled, you can only enable one at a time, putting container into sleep mode.--"
sleep infinity
fi
if [ "${OXIDE_MOD}" == "true" ]; then
echo "---Oxide Mod enabled!---"
CUR_V="$(find ${SERVER_DIR} -maxdepth 1 -name "OxideMod-*.zip" | cut -d '-' -f2)"
LAT_V="$(wget -qO- https://api.github.com/repos/OxideMod/Oxide.Rust/releases/latest | grep tag_name | cut -d '"' -f4)"
if [ -z ${LAT_V} ]; then
if [ -z ${CUR_V%.*} ]; then
echo "---Can't get latest Oxide Mod version and found no installed version, putting server into sleep mode!---"
sleep infinity
else
echo "---Can_t get latest Oxide Mod version, falling back to installed v${CUR_V%.*}!---"
LAT_V="${CUR_V%.*}"
fi
fi
if [ -z "${CUR_V%.}" ]; then
echo "---Oxide Mod not found, downloading!---"
rm -f ${SERVER_DIR}/OxideMod-*.zip
cd ${SERVER_DIR}
if wget -q -nc --show-progress --progress=bar:force:noscroll -O ${SERVER_DIR}/OxideMod-${LAT_V}.zip "https://github.com/OxideMod/Oxide.Rust/releases/download/${LAT_V}/Oxide.Rust-linux.zip" ; then
echo "---Successfully downloaded Oxide Mode v${LAT_V}!---"
else
echo "---Something went wrong, can't download Oxide Mod v${LAT_V}, putting server in sleep mode---"
sleep infinity
fi
unzip -o ${SERVER_DIR}/OxideMod-${LAT_V}.zip -d ${SERVER_DIR}
elif [ "${LAT_V}" != "${CUR_V%.*}" ]; then
cd ${SERVER_DIR}
rm -rf ${SERVER_DIR}/OxideMod-*.zip
echo "---Newer version of Oxide Mod v${LAT_V} found, currently installed: v${CUR_V%.*}---"
if wget -q -nc --show-progress --progress=bar:force:noscroll -O ${SERVER_DIR}/OxideMod-${LAT_V}.zip "https://github.com/OxideMod/Oxide.Rust/releases/download/${LAT_V}/Oxide.Rust-linux.zip" ; then
echo "---Successfully downloaded Oxide Mod v${LAT_V}!---"
else
echo "---Something went wrong, can't download Oxide Mod v${LAT_V}, putting server in sleep mode---"
sleep infinity
fi
unzip -o ${SERVER_DIR}/OxideMod-${LAT_V}.zip -d ${SERVER_DIR}
elif [ "$LAT_V" == "${CUR_V%.*}" ]; then
echo "---Oxide Mod v${CUR_V%.*} is Up-To-Date!---"
fi
if [ "${FORCE_OXIDE_INSTALLATION}" == "true" ]; then
unzip -o ${SERVER_DIR}/OxideMod-${LAT_V}.zip -d ${SERVER_DIR}
fi
fi
if [ "${CARBON_MOD}" == "true" ]; then
echo "---Carbon Mod enabled!---"
CUR_V="$(find ${SERVER_DIR} -maxdepth 1 -name "CarbonMod-*.tar.gz" | cut -d '-' -f2)"
LAT_V="$(wget -qO- https://api.github.com/repos/CarbonCommunity/Carbon/releases/latest | grep tag_name | cut -d '"' -f4)"
if [ -z ${LAT_V} ]; then
if [ -z ${CUR_V%.tar.gz} ]; then
echo "---Can't get latest Carbon Mod version and found no installed version, putting server into sleep mode!---"
sleep infinity
else
echo "---Can_t get latest Carbon Mod version, falling back to installed v${CUR_V%.tar.gz}!---"
LAT_V="${CUR_V%.tar.gz}"
fi
fi
if [ -z "${CUR_V%.tar.gz}" ]; then
echo "---Carbon Mod not found, downloading!---"
rm -f ${SERVER_DIR}/CarbonMod-*.tar.gz
cd ${SERVER_DIR}
if wget -q -nc --show-progress --progress=bar:force:noscroll -O ${SERVER_DIR}/CarbonMod-${LAT_V}.tar.gz "https://github.com/CarbonCommunity/Carbon/releases/download/${LAT_V}/Carbon.Linux.Release.tar.gz" ; then
echo "---Successfully downloaded Carbon Mode ${LAT_V}!---"
else
echo "---Something went wrong, can't download Carbon Mod ${LAT_V}, putting server in sleep mode---"
sleep infinity
fi
tar -xvf ${SERVER_DIR}/CarbonMod-${LAT_V}.tar.gz -C ${SERVER_DIR}
#unzip -o ${SERVER_DIR}/CarbonMod-${LAT_V}.zip -d ${SERVER_DIR}
elif [ "${LAT_V}" != "${CUR_V%.tar.gz}" ]; then
cd ${SERVER_DIR}
rm -rf ${SERVER_DIR}/CarbonMod-*.tar.gz
echo "---Newer version of Carbon Mod ${LAT_V} found, currently installed: v${CUR_V%.tar.gz}---"
if wget -q -nc --show-progress --progress=bar:force:noscroll -O ${SERVER_DIR}/CarbonMod-${LAT_V}.tar.gz "https://github.com/CarbonCommunity/Carbon/releases/download/${LAT_V}/Carbon.Linux.Release.tar.gz" ; then
echo "---Successfully downloaded Carbon Mod ${LAT_V}!---"
else
echo "---Something went wrong, can't download Carbon Mod ${LAT_V}, putting server in sleep mode---"
sleep infinity
fi
tar -xvf ${SERVER_DIR}/CarbonMod-${LAT_V}.tar.gz ${SERVER_DIR}
elif [ "$LAT_V" == "${CUR_V%.tar.gz}" ]; then
echo "---Carbon Mod ${CUR_V%.tar.gz} is Up-To-Date!---"
fi
if [ "${FORCE_CARBON_INSTALLATION}" == "true" ]; then
tar -xvf ${SERVER_DIR}/CarbonMod-${LAT_V}.tar.gz -C ${SERVER_DIR}
fi
source "${SERVER_DIR}/carbon/tools/environment.sh"
fi
echo "---Prepare Server---"
echo "---Setting up Environment---"
export PATH="${SERVER_DIR}/jre64/bin:$PATH"
export LD_LIBRARY_PATH="${SERVER_DIR}/linux64:${SERVER_DIR}/natives:${SERVER_DIR}:${SERVER_DIR}/jre64/lib/amd64:${LD_LIBRARY_PATH}"
export JSIG="libjsig.so"
export JARPATH="java/:java/lwjgl.jar:java/lwjgl_util.jar:java/sqlite-jdbc-3.8.10.1.jar:java/uncommons-maths-1.2.3.jar"
echo "---Looking for server configuration file---"
if [ ! -d ${SERVER_DIR}/Zomboid ]; then
echo "---No server configruation found, downloading template---"
cd ${SERVER_DIR}
if wget -q -nc --show-progress --progress=bar:force:noscroll https://github.com/ich777/docker-steamcmd-server/raw/projectzomboid/config/cfg.zip ; then
echo "---Sucessfully downloaded server configuration file---"
else
echo "---Something went wrong, can't download server configuration file, putting server in sleep mode---"
sleep infinity
fi
unzip -o ${SERVER_DIR}/cfg.zip
rm ${SERVER_DIR}/cfg.zip
else
echo "---Server configuration files found!---"
fi
echo "---Checking for old logs---"
find ${SERVER_DIR} -name "masterLog.0" -exec rm -f {} \; > /dev/null 2>&1
chmod -R ${DATA_PERM} ${DATA_DIR}
echo "---Setting Library path---"
export LD_LIBRARY_PATH=:/bin/RustDedicated_Data/Plugins/x86_64
echo "---Server ready---"
echo "---Start Server---"
cd ${SERVER_DIR}
if [ ! -f ${SERVER_DIR}/RustDedicated ]; then
echo "---Can't find game executable, putting server into sleep mode!---"
sleep infinity
else
${SERVER_DIR}/RustDedicated -batchmode -server.port ${GAME_PORT} -server.queryport ${QUERY_PORT} -rcon.port ${RCON_PORT} -app.port ${APP_PORT} -server.hostname "${SERVER_NAME}" -server.description "${SERVER_DISCRIPTION}" ${GAME_PARAMS}
fi
screen -S PZ -L -Logfile ${SERVER_DIR}/masterLog.0 -d -m ${SERVER_DIR}/ProjectZomboid64 -adminpassword ${ADMIN_PWD} ${GAME_PARAMS}
sleep 2
screen -S watchdog -d -m /opt/scripts/start-watchdog.sh
tail -f ${SERVER_DIR}/masterLog.0

View File

@@ -0,0 +1,8 @@
#!/bin/bash
killpid="$(pidof ProjectZomboid64)"
while true
do
tail --pid=$killpid -f /dev/null
kill "$(pidof tail)"
exit 0
done

View File

@@ -26,8 +26,8 @@ chown -R ${UID}:${GID} ${DATA_DIR}
echo "---Starting...---"
term_handler() {
kill -SIGINT $(pidof RustDedicated)
tail --pid=$(pidof RustDedicated) -f 2>/dev/null
kill -SIGINT $(pidof ProjectZomboid64)
tail --pid=$(pidof ProjectZomboid64) -f 2>/dev/null
sleep 0.5
exit 143;
}