From 47f0a0484b2c15f38b9716c12729d36e53e94f6b Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Thu, 29 Jan 2026 14:15:05 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20default=20ports=20for?= =?UTF-8?q?=20deployment=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/utils/deploy-pokedex.js | 4 ++-- code/websites/pokedex.online/deploy.sh | 4 ++-- code/websites/pokedex.online/docker-compose.production.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/utils/deploy-pokedex.js b/code/utils/deploy-pokedex.js index 8438a76..77bb4d7 100644 --- a/code/utils/deploy-pokedex.js +++ b/code/utils/deploy-pokedex.js @@ -59,9 +59,9 @@ function parseArgs() { const args = process.argv.slice(2); const config = { target: 'internal', - port: 8080, + port: 8099, sslPort: null, - backendPort: 3000 + backendPort: 3099 }; for (let i = 0; i < args.length; i++) { diff --git a/code/websites/pokedex.online/deploy.sh b/code/websites/pokedex.online/deploy.sh index 9a05c7b..c8e59d2 100755 --- a/code/websites/pokedex.online/deploy.sh +++ b/code/websites/pokedex.online/deploy.sh @@ -36,9 +36,9 @@ NC='\033[0m' # No Color # Default configuration TARGET="internal" -PORT=8080 +PORT=8099 SSL_PORT="" -BACKEND_PORT=3000 +BACKEND_PORT=3099 SKIP_TESTS=false SKIP_BUILD=false NO_BACKUP=false diff --git a/code/websites/pokedex.online/docker-compose.production.yml b/code/websites/pokedex.online/docker-compose.production.yml index a603295..78bf91b 100644 --- a/code/websites/pokedex.online/docker-compose.production.yml +++ b/code/websites/pokedex.online/docker-compose.production.yml @@ -9,7 +9,7 @@ services: dockerfile: Dockerfile.frontend container_name: pokedex-frontend ports: - - '8080:80' + - '8099:80' - '8443:443' depends_on: backend: @@ -39,7 +39,7 @@ services: dockerfile: Dockerfile container_name: pokedex-backend ports: - - '3000:3000' + - '3099:3000' environment: - NODE_ENV=production - PORT=3000