diff --git a/cicd/03-Jenkinsfile-deploy-to-tomcat b/cicd/03-Jenkinsfile-deploy-to-tomcat index a3c7cf3c4f..3e4a56644b 100644 --- a/cicd/03-Jenkinsfile-deploy-to-tomcat +++ b/cicd/03-Jenkinsfile-deploy-to-tomcat @@ -12,7 +12,7 @@ pipeline { stage ('Deploy') { steps { script { - deploy adapters: [tomcat9(credentialsId: 'tomcat_credential', path: '', url: 'http://dayal-test.letspractice.tk:8081')], contextPath: '/pipeline', onFailure: false, war: 'webapp/target/*.war' + deploy adapters: [tomcat9(credentialsId: 'tomact-dev', path: '', url: 'http://localhost:8080')], contextPath: '/welcome', onFailure: false, war: 'webapp/target/*.war' } } }