From 9e1c5e95f0e26f698b91a53ac893f5503edd4aba Mon Sep 17 00:00:00 2001 From: Finley Ghosh Date: Fri, 22 Aug 2025 20:54:50 +1000 Subject: [PATCH] Changing ports --- docker-compose.prod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 60089356..7b4880ae 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -4,7 +4,7 @@ services: container_name: cmc-prod-nginx hostname: nginx-prod ports: - - "80:80" # Production nginx on standard port + - "8080:80" # Production nginx on port 8080 to avoid conflict volumes: - ./conf/nginx-site.conf:/etc/nginx/conf.d/cmc.conf - ./userpasswd:/etc/nginx/userpasswd:ro @@ -75,7 +75,7 @@ services: volumes: - db_data:/var/lib/mysql ports: - - "3306:3306" + - "3307:3306" networks: - cmc-prod-network