Skip to content

Commit

Permalink
chore: Update Docker build and push workflows for all services
Browse files Browse the repository at this point in the history
  • Loading branch information
djangbahevans committed Aug 7, 2024
1 parent 87effbf commit 4c0be17
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gateway-docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
context: ./GatewayService
file: ./GatewayService/Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/gateway-srv:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/market-data-docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
context: ./MarketDataService
file: ./MarketDataService/Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/market-srv:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/orders-docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
context: ./OrderProcessingService
file: ./OrderProcessingService/Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/order-srv:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reports-docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
context: ./ReportService
file: ./ReportService/Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/report-srv:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/users-docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
context: ./UserManagement
file: ./UserManagement/Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/user-srv:latest
Expand Down

0 comments on commit 4c0be17

Please sign in to comment.