mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-17 15:43:06 +00:00
Auto-merging via docker-versions-create
This commit is contained in:
commit
de42f62031
2 changed files with 5 additions and 3 deletions
|
@ -452,7 +452,7 @@ An [Airplane](https://github.com/TECHNOVE/Airplane) server, which is a fork of T
|
||||||
|
|
||||||
> NOTE: The `VERSION` variable is used to select an Airplane branch to download from. The available options are "LATEST" "1.16" "1.17" and "PURPUR"
|
> NOTE: The `VERSION` variable is used to select an Airplane branch to download from. The available options are "LATEST" "1.16" "1.17" and "PURPUR"
|
||||||
|
|
||||||
> NOTE: The 1.17 branch is currently in beta. Use at your own risk!
|
> NOTE: The 1.17 branch is currently in beta, and is not yet sufficiently stable for production use. Use at your own risk!
|
||||||
|
|
||||||
Extra variables:
|
Extra variables:
|
||||||
- `AIRPLANE_BUILD=lastSuccessfulBuild` : set a specific Airplane build to use
|
- `AIRPLANE_BUILD=lastSuccessfulBuild` : set a specific Airplane build to use
|
||||||
|
|
|
@ -18,13 +18,15 @@ fi
|
||||||
|
|
||||||
if [ "${VERSION}" = "1.17" ]; then
|
if [ "${VERSION}" = "1.17" ]; then
|
||||||
AIRPLANE_BRANCH="1.17"
|
AIRPLANE_BRANCH="1.17"
|
||||||
log "Airplane 1.17 is in beta. Use at your own risk!"
|
log "AIRPLANE 1.17 IS IN BETA, AND IS NOT YET PRODUCTION-READY. USE AT YOUR OWN RISK!!!"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${VERSION}" = "PURPUR" ]; then
|
if [ "${VERSION}" = "PURPUR" ]; then
|
||||||
AIRPLANE_BRANCH="PURPUR-1.16"
|
AIRPLANE_BRANCH="Purpur-1.16"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
log "Using Airplane-${AIRPLANE_BRANCH} branch"
|
||||||
|
|
||||||
export SERVER=airplane-${AIRPLANE_BRANCH}-${AIRPLANE_BUILD}.jar
|
export SERVER=airplane-${AIRPLANE_BRANCH}-${AIRPLANE_BUILD}.jar
|
||||||
|
|
||||||
if [ ! -f "$SERVER" ] || isTrue "$FORCE_REDOWNLOAD"; then
|
if [ ! -f "$SERVER" ] || isTrue "$FORCE_REDOWNLOAD"; then
|
||||||
|
|
Loading…
Reference in a new issue