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.
This commit is contained in:
Ümit Tunç
2025-10-25 17:10:02 -03:00
parent be9d6e3687
commit 747043d616
+2 -2
View File
@@ -17,7 +17,7 @@ services:
container_name: truncgil-finance-web container_name: truncgil-finance-web
restart: always restart: always
ports: ports:
- "8088:80" - "8089:80"
volumes: volumes:
- .:/var/www - .:/var/www
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf - ./nginx/default.conf:/etc/nginx/conf.d/default.conf
@@ -38,7 +38,7 @@ services:
networks: networks:
- app-network - app-network
ports: ports:
- "3307:3306" - "3308:3306"
networks: networks:
app-network: app-network: