update
All checks were successful
Build and Push teamspeak-server Docker Images / build (push) Successful in 41s

This commit is contained in:
2025-07-04 15:21:09 -07:00
parent 3123e07183
commit 663b50e28e
6 changed files with 15 additions and 12 deletions

View File

@@ -2,15 +2,16 @@ FROM alpine:latest
LABEL maintainer="fithwum"
# URL's for files
ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/teamspeak-server/refs/heads/main/alpine/files/Install_Script.sh
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/teamspeak-server/raw/branch/main/alpine/files/Install_Script.sh
# Install dependencies and folder creation
RUN apk update && apk add --no-cache wget nano ca-certificates libstdc++ su-exec bash-completion tar curl jq \
&& mkdir -p /ts3server /ts3temp /ts3temp/serverfiles \
&& chmod 777 -R /ts3server /ts3temp \
&& chown 99:100 -R /ts3server /ts3temp
ADD "${INSTALL_SCRIPT}" /ts3temp
RUN chmod +x /ts3temp/Install_Script.sh
RUN wget --no-cache "${INSTALL_SCRIPT}" -O /ts3temp/Install_Script.sh \
&& chmod +x /ts3temp/Install_Script.sh
# directory where data is stored
VOLUME /ts3server

View File

@@ -9,7 +9,7 @@ TS_VERSION=$(curl -s "https://www.teamspeak.com/versions/server.json" | jq --raw
CHANGELOG=/ts3server/CHANGELOG_$TS_VERSION
echo "Latest server version from Teamspeak:$TS_VERSION"
TS_FILES=https://raw.githubusercontent.com/fithwum/teamspeak-server/refs/heads/main/files
TS_FILES=https://gitea.fithwum.tech/fithwum/teamspeak-server/raw/branch/main/files
TS_SERVER=https://files.teamspeak-services.com/releases/server/$TS_VERSION/teamspeak3-server_linux_amd64-$TS_VERSION.tar.bz2
# Main install (alpine).