Add SqMod debian image, other bugfix crap

This commit is contained in:
Thijn Geurts
2021-07-15 09:01:19 +02:00
parent 730243a154
commit e347bd861d
8 changed files with 106 additions and 8 deletions

29
sqmod/Dockerfile Normal file
View File

@@ -0,0 +1,29 @@
FROM debian:latest
MAINTAINER Thijn <thijn@viceunderdogs.com>
# Install packages
RUN apt-get update && apt-get install -y \
wget \
unzip \
p7zip \
libstdc++6 \
gcc \
g++ \
build-essential \
libmariadb3 \
libcurl4 \
libpq5 \
&& adduser --disabled-password --home /home/container container
USER container
ENV USER container
ENV HOME /home/container
ENV VCMP_VERSION v30
ENV VCMP_PLUGIN_PATCH patch2
WORKDIR /home/container
COPY ./start.sh /start.sh
CMD ["/bin/bash", "/start.sh"]

2
sqmod/build.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
docker build -t vcmp_04rel64:sqmod .

3
sqmod/publish.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
docker tag vcmp_04rel64:sqmod docker.panel2.viceunderdogs.com/vcmp-04rel64:sqmod
docker push docker.panel2.viceunderdogs.com/vcmp-04rel64:sqmod

42
sqmod/start.sh Normal file
View File

@@ -0,0 +1,42 @@
#!/bin/bash
CHK_FILE="/home/container/mpsvrrel64"
if [ -f $CHK_FILE ]; then
echo "VC:MP executable exists, not downloading. To update, delete mpsvrrel64."
else
wget -q http://v04.thijn.ovh/server/VCMP04_server_${VCMP_VERSION}_linux64.zip
unzip VCMP04_server_${VCMP_VERSION}_linux64.zip
rm -f VCMP04_server_${VCMP_VERSION}_linux64.zip
echo "Downloaded VC:MP Server version ${VCMP_VERSION}"
mkdir plugins
cd plugins/
wget -q http://v04.thijn.ovh/allplugins_04rel006_${VCMP_PLUGIN_PATCH}.7z
p7zip -d allplugins_04rel006_${VCMP_PLUGIN_PATCH}.7z
chmod 700 *
rm -f allplugins_04rel006_${VCMP_PLUGIN_PATCH}.7z
rm -f *rel32.*
rm -f *.dll
cd /home/container
chmod +x mpsvrrel64
find
fi
if [ -f "/home/container/server.cfg" ]; then
echo "server.cfg exists, not generating file."
else
echo "
gamemode Default mode
plugins squirrel04rel64 sqlite04rel64 hashing04rel64 sockets04rel64
port ${SERVER_PORT}
sqgamemode main.nut
maxplayers ${MAX_SLOTS}
" > server.cfg
fi
cd /home/container/
MODIFIED_STARTUP=`echo ${STARTUP} | perl -pe 's@\{\{(.*?)\}\}@$ENV{$1}@g'`
echo "Startup: ${MODIFIED_STARTUP}"
eval ${MODIFIED_STARTUP}
exit 0