Changing ports

This commit is contained in:
Finley Ghosh 2025-08-22 20:54:50 +10:00
parent a47d1e9e51
commit 9e1c5e95f0

View file

@ -4,7 +4,7 @@ services:
container_name: cmc-prod-nginx container_name: cmc-prod-nginx
hostname: nginx-prod hostname: nginx-prod
ports: ports:
- "80:80" # Production nginx on standard port - "8080:80" # Production nginx on port 8080 to avoid conflict
volumes: volumes:
- ./conf/nginx-site.conf:/etc/nginx/conf.d/cmc.conf - ./conf/nginx-site.conf:/etc/nginx/conf.d/cmc.conf
- ./userpasswd:/etc/nginx/userpasswd:ro - ./userpasswd:/etc/nginx/userpasswd:ro
@ -75,7 +75,7 @@ services:
volumes: volumes:
- db_data:/var/lib/mysql - db_data:/var/lib/mysql
ports: ports:
- "3306:3306" - "3307:3306"
networks: networks:
- cmc-prod-network - cmc-prod-network