add option for branch
This commit is contained in:
parent
3347d34755
commit
dfa67941c7
2 changed files with 7 additions and 1 deletions
|
@ -11,6 +11,7 @@ services:
|
|||
volumes:
|
||||
- "./vintagestory:/data"
|
||||
environment:
|
||||
- "VS_BRANCH=stable"
|
||||
- "VS_VERSION=1.20.7"
|
||||
ports:
|
||||
- "42420:42420/tcp"
|
||||
|
|
7
entry.sh
7
entry.sh
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue