🔧 Update default ports for deployment configuration

This commit is contained in:
2026-01-29 14:15:05 +00:00
parent 836fc70c49
commit 47f0a0484b
3 changed files with 6 additions and 6 deletions

View File

@@ -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

View File

@@ -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