This commit is contained in:
2025-07-01 14:18:30 -07:00
parent a2efe4909a
commit 8314fbe812
7 changed files with 10 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ FROM alpine:latest
LABEL maintainer "fithwum" LABEL maintainer "fithwum"
# URL's for files # URL's for files
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/teamspeak-server/raw/branch/main/alpine/files/Install_Script.sh ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/teamspeak-server/refs/heads/main/alpine/files/Install_Script.sh
# Install dependencies and folder creation # Install dependencies and folder creation
RUN apk update && apk add --no-cache wget nano ca-certificates libstdc++ su-exec bash-completion tar curl jq \ RUN apk update && apk add --no-cache wget nano ca-certificates libstdc++ su-exec bash-completion tar curl jq \

View File

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

View File

@@ -2,7 +2,7 @@ FROM fithwum/base-image:debian-bullseye
LABEL maintainer "fithwum" LABEL maintainer "fithwum"
# URL's for files # URL's for files
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/teamspeak-server/raw/branch/main/basic/files/Install_Script.sh ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/teamspeak-server/refs/heads/main/basic/files/Install_Script.sh
# Install dependencies and folder creation # Install dependencies and folder creation
RUN apt-get -y update && apt-get autoclean && apt-get autoremove \ RUN apt-get -y update && apt-get autoclean && apt-get autoremove \

View File

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

View File

@@ -2,9 +2,7 @@
# Copyright (c) 2023 fithwum # Copyright (c) 2023 fithwum
# All rights reserved # All rights reserved
docker build --pull --rm -f "alpine/Dockerfile" -t fithwum/teamspeak-server:alpine "alpine" docker build --pull --rm -f "alpine/Dockerfile" -t gitea.fithwum.tech/fithwum/teamspeak-server:alpine "alpine"
docker push fithwum/teamspeak-server:alpine docker build --pull --rm -f "debian/Dockerfile" -t gitea.fithwum.tech/fithwum/teamspeak-server:debian "debian"
docker build --pull --rm -f "debian/Dockerfile" -t fithwum/teamspeak-server:debian "debian" docker build --pull --rm -f "basic/Dockerfile" -t gitea.fithwum.tech/fithwum/teamspeak-server:basic "basic"
docker push fithwum/teamspeak-server:debian docker push -a gitea.fithwum.tech/fithwum/teamspeak-server
docker build --pull --rm -f "basic/Dockerfile" -t fithwum/teamspeak-server:basic "basic"
docker push fithwum/teamspeak-server:basic

2
debian/Dockerfile vendored
View File

@@ -2,7 +2,7 @@ FROM fithwum/base-image:debian-bullseye
LABEL maintainer "fithwum" LABEL maintainer "fithwum"
# URL's for files # URL's for files
ARG INSTALL_SCRIPT=https://gitea.fithwum.tech/fithwum/teamspeak-server/raw/branch/main/debian/files/Install_Script.sh ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/teamspeak-server/refs/heads/main/debian/files/Install_Script.sh
# Install dependencies and folder creation # Install dependencies and folder creation
RUN apt-get -y update && apt-get autoclean && apt-get autoremove \ RUN apt-get -y update && apt-get autoclean && apt-get autoremove \

View File

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