From 7db005510fd218fe2f8245e1c55d4ceb935f5f6f Mon Sep 17 00:00:00 2001 From: LoV432 Date: Tue, 12 Dec 2023 16:11:07 +0500 Subject: [PATCH] add portforwading to docker-compose --- examples/docker-compose-with-cs2.yml | 2 ++ examples/docker-compose.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/examples/docker-compose-with-cs2.yml b/examples/docker-compose-with-cs2.yml index 74285aa..32693b4 100644 --- a/examples/docker-compose-with-cs2.yml +++ b/examples/docker-compose-with-cs2.yml @@ -38,6 +38,8 @@ services: - RCON_PORT=27015 # RCON Port - RCON_PASSWORD=veryweakrconpassword # RCON Password - MAXMIND_LICENSE_KEY= # Maxmind License Key (optional for geolocation) + ports: + - 3000:3000 restart: unless-stopped networks: diff --git a/examples/docker-compose.yml b/examples/docker-compose.yml index e5239dd..54fba36 100644 --- a/examples/docker-compose.yml +++ b/examples/docker-compose.yml @@ -9,4 +9,6 @@ services: - RCON_PORT= # RCON Port - RCON_PASSWORD= # RCON Password - MAXMIND_LICENSE_KEY= # Maxmind License Key (optional for geolocation) + ports: + - 3000:3000 restart: unless-stopped \ No newline at end of file