add option for branch

This commit is contained in:
1e99 2025-03-29 14:28:39 +01:00
parent 3347d34755
commit dfa67941c7
2 changed files with 7 additions and 1 deletions

View file

@ -11,6 +11,7 @@ services:
volumes:
- "./vintagestory:/data"
environment:
- "VS_BRANCH=stable"
- "VS_VERSION=1.20.7"
ports:
- "42420:42420/tcp"

View file

@ -6,7 +6,12 @@ if [[ ! -v VS_VERSION ]]; then
exit 1
fi
wget https://cdn.vintagestory.at/gamefiles/stable/vs_server_linux-x64_${VS_VERSION}.tar.gz
if [[ ! -v VS_BRANCH ]]; then
echo "You need to set the VS_BRANCH env variable."
exit 1
fi
wget https://cdn.vintagestory.at/gamefiles/${VS_BRANCH}/vs_server_linux-x64_${VS_VERSION}.tar.gz
tar xzf vs_server_linux-*.tar.gz
rm vs_server_linux-*.tar.gz