From 525d29191ca90c5b391c2181a18e0f1c64a25bc1 Mon Sep 17 00:00:00 2001 From: mpsijm Date: Mon, 8 Jun 2020 22:23:54 +0200 Subject: [PATCH] Use MAXPLAYERS instead of MAX_PLAYERS in example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f44ee5c..a99299f 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,12 @@ Container Runtime Environment Variables: Example docker run: ``` -docker run --name "TF2-Server" \ - -e APP_SERVER_PORT=27015 \ - -e APP_SERVER_MAX_PLAYERS=24 \ +docker run --name "TF2-Server" \ + -e APP_SERVER_PORT=27015 \ + -e APP_SERVER_MAXPLAYERS=24 \ -e APP_SERVER_MAP=ctf_2fort \ -e APP_SERVER_TOKEN=abc123 \ - -e APP_SERVER_NAME="My TF2 Server" \ + -e APP_SERVER_NAME="My TF2 Server" \ -e APP_SERVER_CONTACT="user@example.com" \ -e APP_SERVER_REGION=3 \ -e APP_RCON_PASSWORD=abc123 \