From 58ca3d1e732a5aa2133e0fb12a6d026a2fe3dc25 Mon Sep 17 00:00:00 2001 From: josedario87 Date: Sat, 5 Jul 2025 15:17:18 -0600 Subject: [PATCH] fix: Change exposed ports to avoid conflicts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Server: 2567 → 3067 (host:container) - Client: 3000 → 3010 (host:container) - Admin: 3001 → 3011 (host:container) - Internal container ports remain the same --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 93c6963..a93b163 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: image: gitea.interno.com/nucleo000/snatchgame-server:latest container_name: snatchgame-server ports: - - "2567:2567" + - "3067:2567" environment: - NODE_ENV=production - PORT=2567 @@ -25,7 +25,7 @@ services: image: gitea.interno.com/nucleo000/snatchgame-client:latest container_name: snatchgame-client ports: - - "3000:3000" + - "3010:3000" environment: - NODE_ENV=production - PORT=3000 @@ -47,7 +47,7 @@ services: image: gitea.interno.com/nucleo000/snatchgame-admin:latest container_name: snatchgame-admin ports: - - "3001:3001" + - "3011:3001" environment: - NODE_ENV=production - PORT=3001