From 747043d6164179c66cd77c2506085b51e05f5aac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Sat, 25 Oct 2025 17:10:02 -0300 Subject: [PATCH] Update Docker Compose configuration for service port changes - Changed the web service port mapping from 8088 to 8089 to avoid conflicts. - Updated the database service port mapping from 3307 to 3308 for better alignment with application requirements. These changes improve the accessibility and organization of the Docker setup for the Truncgil Finance application. --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index b2629db..2c34658 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,7 +17,7 @@ services: container_name: truncgil-finance-web restart: always ports: - - "8088:80" + - "8089:80" volumes: - .:/var/www - ./nginx/default.conf:/etc/nginx/conf.d/default.conf @@ -38,7 +38,7 @@ services: networks: - app-network ports: - - "3307:3306" + - "3308:3306" networks: app-network: