Fix: Remove hardcoded secrets, fix port mappings, and update frontend proxy
All checks were successful
DevSecOps-Multibranch/pipeline/head This commit looks good

This commit is contained in:
test
2025-11-30 19:00:41 +05:30
parent c2abaaa2c1
commit a4357c95cd
3 changed files with 14 additions and 19 deletions

4
Jenkinsfile vendored
View File

@@ -94,7 +94,7 @@ pipeline {
${remote} 'docker run -d \
--name ${backName} \
--restart always \
-p ${backPort}:3000 \
-p ${backPort}:3001 \
${REGISTRY_URL}/${REPO_NAME}:${BACKEND_TAG}'
"""
@@ -107,7 +107,7 @@ pipeline {
${remote} 'docker run -d \
--name ${frontName} \
--restart always \
-p ${frontPort}:3000 \
-p ${frontPort}:80 \
${REGISTRY_URL}/${REPO_NAME}:${FRONTEND_TAG}'
"""