Skip to content

Commit

Permalink
environment: 컨테이너 실행 시 8080포트로 포트포워딩 하도록 변경(prod)
Browse files Browse the repository at this point in the history
  • Loading branch information
SongJaeHoonn authored Sep 2, 2024
1 parent ee81d1f commit dcf8a61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jenkins/prod/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def deployNewInstance() {
echo "Running new container ${DEPLOY_CONTAINER} with image ${IMAGE_NAME}:${DEPLOY_CONTAINER}"
docker run -d --name ${DEPLOY_CONTAINER} \\
-p ${NEW_PORT}:8000 \\
-p ${NEW_PORT}:8080 \\
--network ${APPLICATION_NETWORK} \\
-v ${EXTERNAL_SERVER_CONFIG_PATH}:${INTERNAL_SERVER_CONFIG_PATH} \\
-v ${EXTERNAL_SERVER_CLOUD_PATH}:${INTERNAL_SERVER_CLOUD_PATH} \\
Expand Down Expand Up @@ -450,4 +450,4 @@ def switchTrafficAndCleanup() {
fi
"""
}
}
}

0 comments on commit dcf8a61

Please sign in to comment.