vintagestorydocker/entry.sh
2025-03-29 14:28:39 +01:00

18 lines
439 B
Bash

#!/usr/bin/env bash
set -e
if [[ ! -v VS_VERSION ]]; then
echo "You need to set the VS_VERSION env variable."
exit 1
fi
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
/vintagestory/VintagestoryServer --dataPath /data