From 1b00a8692b6f26571aba5d441c7920d0aad98b31 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sat, 25 Sep 2021 09:38:47 -0500 Subject: [PATCH 1/3] docs: noted whitelist importance --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 477eb809..03cd5854 100644 --- a/README.md +++ b/README.md @@ -779,6 +779,8 @@ values. ### Whitelist Players +> **NOTE** it is very important to set this with servers exposed to the internet where you want only limited players to join. + To whitelist players for your Minecraft server, pass the Minecraft usernames separated by commas via the `WHITELIST` environment variable, such as docker run -d -e WHITELIST=user1,user2 ... From 8acb3f8a90860f662f96eaefb2fde99baf288cc0 Mon Sep 17 00:00:00 2001 From: itzg Date: Sat, 25 Sep 2021 14:39:20 +0000 Subject: [PATCH 2/3] docs: Auto update markdown TOC --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03cd5854..621e38fc 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ By default, the container will download the latest version of the "vanilla" [Min * [Enabling Autopause](#enabling-autopause) * [Running on RaspberryPi](#running-on-raspberrypi) - + From 10d254bbbc91a18ac89c09cb74d7e2e88d7a0e12 Mon Sep 17 00:00:00 2001 From: avionix-g <63542699+avionix-g@users.noreply.github.com> Date: Mon, 27 Sep 2021 07:53:56 -0400 Subject: [PATCH 3/3] Fix 'curl: unknown --write-out variable' for .zip modpacks (#1060) --- start-setupModpack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-setupModpack b/start-setupModpack index a037b8f2..92cb9811 100755 --- a/start-setupModpack +++ b/start-setupModpack @@ -22,7 +22,7 @@ if [[ "$MODPACK" ]]; then if [[ "${MODPACK}" == *.zip ]]; then downloadUrl="${MODPACK}" else - downloadUrl=$(curl -Ls -o /dev/null -w %{effective_url} $MODPACK) + downloadUrl=$(curl -Ls -o /dev/null -w %{url_effective} $MODPACK) if ! [[ $downloadUrl == *.zip ]]; then log "ERROR Invalid URL given for MODPACK: $downloadUrl resolved from $MODPACK" log " Must be HTTP, HTTPS or FTP and a ZIP file"