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:
+2
-2
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user