build: typo dockerfile inventory-service #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Publish | |
on: | |
push: | |
branches: [ "master" ] | |
paths-ignore: | |
- 'database/**' | |
- 'documentation/**' | |
- 'README.md' | |
- '.insomnium' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker/setup-qemu-action@v2 | |
- uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: 8160202 | |
password: ${{ secrets.DOCKER_HUB_PW }} | |
- name: Build and push eureka-service | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:eureka-service" | |
push: true | |
tags: 8160202/eureka-service:latest | |
platforms: 'linux/arm64,linux/amd64' | |
- name: Build and push api-gateway | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:api-gateway" | |
push: true | |
tags: 8160202/api-gateway:latest | |
platforms: 'linux/arm64,linux/amd64' | |
- name: Build and push user-service | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:user-service" | |
push: true | |
tags: 8160202/user-service:latest | |
platforms: 'linux/arm64,linux/amd64' | |
- name: Build and push auth-service | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:auth-service" | |
push: true | |
tags: 8160202/auth-service:latest | |
platforms: 'linux/arm64,linux/amd64' | |
- name: Build and push inventory-service | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:inventory-service" | |
push: true | |
tags: 8160202/inventory-service:latest | |
platforms: 'linux/arm64,linux/amd64' | |
- name: Build and push reviews-service | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:reviews-service" | |
push: true | |
tags: 8160202/reviews-service:latest | |
platforms: 'linux/arm64,linux/amd64' | |
- name: Build and push order-service | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:order-service" | |
push: true | |
tags: 8160202/order-service:latest | |
platforms: 'linux/arm64,linux/amd64' | |
- name: Build and push notification-service | |
uses: docker/build-push-action@v4 | |
with: | |
context: "{{defaultContext}}:notification-service" | |
push: true | |
tags: 8160202/notification-service:latest | |
platforms: 'linux/arm64,linux/amd64' | |