Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions microservices/microservices.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,19 +323,19 @@ cd ~/github/mastering-microservices/notification

```bash
cd ~/github/mastering-microservices/gateway
./gradlew -Pprod bootWar buildDocker -x test
./gradlew -Pprod bootJar jibDockerBuild -x test
docker images | grep gateway

cd ~/github/mastering-microservices/productorder
./gradlew -Pprod bootWar buildDocker -x test
./gradlew -Pprod bootJar jibDockerBuild -x test
docker images | grep productorder

cd ~/github/mastering-microservices/invoice
./gradlew -Pprod bootWar buildDocker -x test
./gradlew -Pprod bootJar jibDockerBuild -x test
docker images | grep invoice

cd ~/github/mastering-microservices/notification
./gradlew -Pprod bootWar buildDocker -x test
./gradlew -Pprod bootJar jibDockerBuild -x test
docker images | grep notification
```

Expand Down