Skip to content

Commit

Permalink
revising local registry port to 5001
Browse files Browse the repository at this point in the history
  • Loading branch information
eitansuez committed Nov 21, 2022
1 parent ef9ae49 commit 556ef25
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion petclinic-customers-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<spring-cloud.version>2021.0.5</spring-cloud.version>

<maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
<spring-boot.build-image.imageName>localhost:56619/petclinic-customers-service</spring-boot.build-image.imageName>
<spring-boot.build-image.imageName>localhost:5001/petclinic-customers-service</spring-boot.build-image.imageName>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion petclinic-frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<webjars-angular.version>1.6.4</webjars-angular.version>
<webjars-angular-ui-router.version>1.0.3</webjars-angular-ui-router.version>
<wro4j.version>1.8.0</wro4j.version>
<spring-boot.build-image.imageName>localhost:56619/petclinic-frontend</spring-boot.build-image.imageName>
<spring-boot.build-image.imageName>localhost:5001/petclinic-frontend</spring-boot.build-image.imageName>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion petclinic-vets-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>

<spring-boot.build-image.imageName>localhost:56619/petclinic-vets-service</spring-boot.build-image.imageName>
<spring-boot.build-image.imageName>localhost:5001/petclinic-vets-service</spring-boot.build-image.imageName>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion petclinic-visits-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<spring-boot.version>2.7.5</spring-boot.version>
<spring-cloud.version>2021.0.5</spring-cloud.version>

<spring-boot.build-image.imageName>localhost:56619/petclinic-visits-service</spring-boot.build-image.imageName>
<spring-boot.build-image.imageName>localhost:5001/petclinic-visits-service</spring-boot.build-image.imageName>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion push-images.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

REPOSITORY_PREFIX="localhost:56619"
REPOSITORY_PREFIX="localhost:5001"

docker push ${REPOSITORY_PREFIX}/petclinic-frontend:latest
docker push ${REPOSITORY_PREFIX}/petclinic-visits-service:latest
Expand Down

0 comments on commit 556ef25

Please sign in to comment.