Skip to content

Commit

Permalink
update repository with placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
deepu105 committed Dec 19, 2018
1 parent 304b9c8 commit 4a551da
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 7 deletions.
Binary file added app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docker-compose/xebialabs/jenkins/jenkins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
branch("master")
remote {
credentials('github-credentials')
url('https://github.com/xebialabs/e-commerce-microservice.git')
url('https://github.com/<your-github-username>/e-commerce-microservice.git')
}
}
}
Expand All @@ -46,7 +46,7 @@ jobs:
branch("master")
remote {
credentials('github-credentials')
url('https://github.com/xebialabs/e-commerce-microservice.git')
url('https://github.com/<your-github-username>/e-commerce-microservice.git')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion invoice/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,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('xebialabsunsupported/ecommerce-invoice', 'invoice/build/docker')
dockerImage = docker.build('<your-dockerhub-user>/ecommerce-invoice', 'invoice/build/docker')
}
stage ("publish docker") {
docker.withRegistry('https://index.docker.io/v1/', 'docker-login') {
Expand Down
Binary file modified invoice/invoice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion invoice/kubernetes/invoice-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
done
containers:
- name: invoice-app
image: xebialabsunsupported/ecommerce-invoice:@IMAGE_TAG@
image: <your-dockerhub-user>/ecommerce-invoice:@IMAGE_TAG@
imagePullPolicy: Always
env:
- name: SPRING_PROFILES_ACTIVE
Expand Down
2 changes: 1 addition & 1 deletion notification/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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('xebialabsunsupported/ecommerce-notification', 'notification/build/docker')
dockerImage = docker.build('<your-dockerhub-user>/ecommerce-notification', 'notification/build/docker')
}
stage ("publish docker") {
docker.withRegistry('https://index.docker.io/v1/', 'docker-login') {
Expand Down
2 changes: 1 addition & 1 deletion notification/kubernetes/notification-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
done
containers:
- name: notification-app
image: xebialabsunsupported/ecommerce-notification
image: <your-dockerhub-user>/ecommerce-notification
imagePullPolicy: Always
env:
- name: SPRING_PROFILES_ACTIVE
Expand Down
Binary file modified notification/notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion store/kubernetes/store-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
done
containers:
- name: store-app
image: xebialabsunsupported/ecommerce-store:@IMAGE_TAG@
image: <your-dockerhub-user>/ecommerce-store:@IMAGE_TAG@
imagePullPolicy: Always
env:
- name: SPRING_PROFILES_ACTIVE
Expand Down
Binary file modified store/store.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4a551da

Please sign in to comment.