diff --git a/app.png b/app.png index 1d04b28..5898ca0 100644 Binary files a/app.png and b/app.png differ diff --git a/docker-compose/xebialabs/jenkins/jenkins.yaml b/docker-compose/xebialabs/jenkins/jenkins.yaml index d7f5404..dbd2277 100644 --- a/docker-compose/xebialabs/jenkins/jenkins.yaml +++ b/docker-compose/xebialabs/jenkins/jenkins.yaml @@ -12,7 +12,7 @@ jobs: branch("master") remote { credentials('github-credentials') - url('https://github.com//e-commerce-microservice.git') + url('https://github.com/${GITHUB_USER}/e-commerce-microservice.git') } } } @@ -29,7 +29,7 @@ jobs: branch("master") remote { credentials('github-credentials') - url('https://github.com//e-commerce-microservice.git') + url('https://github.com/${GITHUB_USER}/e-commerce-microservice.git') } } } @@ -46,7 +46,7 @@ jobs: branch("master") remote { credentials('github-credentials') - url('https://github.com//e-commerce-microservice.git') + url('https://github.com/${GITHUB_USER}/e-commerce-microservice.git') } } } diff --git a/docker-compose/xebialabs/xl-deploy/Dockerfile b/docker-compose/xebialabs/xl-deploy/Dockerfile index d738db3..ba89ed3 100644 --- a/docker-compose/xebialabs/xl-deploy/Dockerfile +++ b/docker-compose/xebialabs/xl-deploy/Dockerfile @@ -2,3 +2,10 @@ FROM xebialabsunsupported/xl-deploy:8.5.0 COPY default-conf/* /opt/xebialabs/xl-deploy-server/default-conf/ +# workarounds for latest fixes + +RUN rm -f /opt/xebialabs/xl-deploy-server/lib/provision-8.5.0.jar +COPY lib/provision-8.6.0-SNAPSHOT.jar /opt/xebialabs/xl-deploy-server/lib/ + +RUN rm -f /opt/xebialabs/xl-deploy-server/default-plugins/xld-aws-plugin-*.xldp +COPY lib/xld-aws-plugin-8.5.1-SNAPSHOT.xldp /opt/xebialabs/xl-deploy-server/default-plugins/ diff --git a/docker-compose/xebialabs/xl-deploy/lib/provision-8.6.0-SNAPSHOT.jar b/docker-compose/xebialabs/xl-deploy/lib/provision-8.6.0-SNAPSHOT.jar new file mode 100644 index 0000000..90bf48e Binary files /dev/null and b/docker-compose/xebialabs/xl-deploy/lib/provision-8.6.0-SNAPSHOT.jar differ diff --git a/docker-compose/xebialabs/xl-deploy/lib/xld-aws-plugin-8.5.1-SNAPSHOT.xldp b/docker-compose/xebialabs/xl-deploy/lib/xld-aws-plugin-8.5.1-SNAPSHOT.xldp new file mode 100644 index 0000000..a4a87ca Binary files /dev/null and b/docker-compose/xebialabs/xl-deploy/lib/xld-aws-plugin-8.5.1-SNAPSHOT.xldp differ diff --git a/invoice/Jenkinsfile b/invoice/Jenkinsfile index 2e5735c..0d29de8 100644 --- a/invoice/Jenkinsfile +++ b/invoice/Jenkinsfile @@ -53,7 +53,7 @@ pipeline { stage ("build docker") { sh "cp -R invoice/src/main/docker invoice/build/" sh "cp invoice/build/libs/*.war invoice/build/docker/" - dockerImage = docker.build('/ecommerce-invoice', 'invoice/build/docker') + dockerImage = docker.build("${env.DOCKER_USER}/ecommerce-invoice", 'invoice/build/docker') } stage ("publish docker") { docker.withRegistry('https://index.docker.io/v1/', 'docker-login') { diff --git a/invoice/invoice.png b/invoice/invoice.png index c072305..97501b8 100644 Binary files a/invoice/invoice.png and b/invoice/invoice.png differ diff --git a/notification/Jenkinsfile b/notification/Jenkinsfile index 0e6ed6f..12df9c9 100644 --- a/notification/Jenkinsfile +++ b/notification/Jenkinsfile @@ -53,7 +53,7 @@ pipeline { stage ("build docker") { sh "cp -R notification/src/main/docker notification/build/" sh "cp notification/build/libs/*.war notification/build/docker/" - dockerImage = docker.build('/ecommerce-notification', 'notification/build/docker') + dockerImage = docker.build("${env.DOCKER_USER}/ecommerce-notification", 'notification/build/docker') } stage ("publish docker") { docker.withRegistry('https://index.docker.io/v1/', 'docker-login') { diff --git a/notification/notification.png b/notification/notification.png index b77c6cb..b1abb80 100644 Binary files a/notification/notification.png and b/notification/notification.png differ diff --git a/store/Jenkinsfile b/store/Jenkinsfile index ad5549f..4ca8332 100644 --- a/store/Jenkinsfile +++ b/store/Jenkinsfile @@ -72,7 +72,7 @@ pipeline { stage ("build docker") { sh "cp -R store/src/main/docker store/build/" sh "cp store/build/libs/*.war store/build/docker/" - dockerImage = docker.build('/ecommerce-store', 'store/build/docker') + dockerImage = docker.build("${env.DOCKER_USER}/ecommerce-store", 'store/build/docker') } stage ("publish docker") { docker.withRegistry('https://index.docker.io/v1/', 'docker-login') { diff --git a/store/store.png b/store/store.png index 69217a8..33adb43 100644 Binary files a/store/store.png and b/store/store.png differ