From 0f176681d86fe392ee146b5229ac42d40cca73b2 Mon Sep 17 00:00:00 2001 From: Bims Date: Sat, 21 Dec 2024 17:30:58 +0000 Subject: [PATCH] docs: add tar and zip archive mentions --- README.md | 6 +++--- examples/docker-compose.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3933b42..9f64c25 100644 --- a/README.md +++ b/README.md @@ -165,13 +165,13 @@ mp_maxrounds 16 // Shorter games ## Customisation Bundle -The container can be instructed to download a extract a Tar Gzip of configuration files and other customisations from a given URL. +The container can be instructed to download a extract a Tar Gzip bundle, Tar or Zip archive of configuration files and other customisations from a given URL. ```dockerfile -CS2_CFG_URL="" (HTTP/HTTPS URL to fetch a Tar Gzip bundle of configuration files/mods) +CS2_CFG_URL="" (HTTP/HTTPS URL to fetch a Tar Gzip bundle, Tar or Zip archive of configuration files/mods) ``` -See [examples](https://github.com/joedwards32/CS2/blob/main/examples/cs2.cfg.tgz) for a correctly formatted Tar Gzip customisation bundle. +See [examples](https://github.com/joedwards32/CS2/blob/main/examples/cs2.cfg.tgz) for a correctly formatted Tar Gzip customisation bundle, the same format applies to all archive types. # Credits diff --git a/examples/docker-compose.yml b/examples/docker-compose.yml index 535f3b7..af3b257 100644 --- a/examples/docker-compose.yml +++ b/examples/docker-compose.yml @@ -16,7 +16,7 @@ services: - CS2_PW=changeme # (CS2 server password) - CS2_MAXPLAYERS=10 # (Max players) - CS2_ADDITIONAL_ARGS # (Optional additional arguments to pass into cs2) - - CS2_CFG_URL # HTTP/HTTPS URL to fetch a Tar Gzip bundle of configuration files/mods + - CS2_CFG_URL # HTTP/HTTPS URL to fetch a Tar Gzip bundle, Tar or Zip archive of configuration files/mods # Game modes - CS2_GAMEALIAS # (Game type, e.g. casual, competitive, deathmatch. See https://developer.valvesoftware.com/wiki/Counter-Strike_2/Dedicated_Servers) - CS2_GAMETYPE=0 # (Used if CS2_GAMEALIAS not defined. See https://developer.valvesoftware.com/wiki/Counter-Strike_2/Dedicated_Servers)