From de666f0c06a733834f99b6357b6eb21b89eae53b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 18 Aug 2025 18:33:15 +0000 Subject: [PATCH] fix(readme): correct volume mount syntax in usage examples * Updated volume mount paths in the README to use consistent quoting. * Ensures clarity and correctness for users running Docker commands. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e2616b..cc709be 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Using a distinct mount (e.g. `/data`) along with `+force_install_dir /data` keep docker run -it --rm \ -e PUID=$(id -u) -e PGID=$(id -g) \ -v "$PWD:/data" \ - -v /path/on/host/steamcmd-app:/home/steam/.local/share/Steam \ + -v "/path/on/host/steamcmd-app:/home/steam/.local/share/Steam" \ gameservermanagers/steamcmd:latest \ +force_install_dir /data +login anonymous +app_update 4020 +quit ``` @@ -70,7 +70,7 @@ docker volume create steamcmd-data docker volume create steamcmd-app docker run -it --rm \ -v "steamcmd-data:/data" \ - -v steamcmd-app:/home/steam/.local/share/Steam \ + -v "steamcmd-app:/home/steam/.local/share/Steam" \ gameservermanagers/steamcmd:latest \ +force_install_dir /data +login anonymous +app_update 4020 +quit ```