Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
rasulov1337 committed Dec 15, 2024
1 parent 3a1351a commit a03282e
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,40 +18,35 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
file: ./ads_service/Dockerfile
push: true
file: ./microservices/ads_service/Dockerfile
tags: ads_service:latest

- name: Build and push auth_service
uses: docker/build-push-action@v4
with:
context: .
file: ./auth_service/Dockerfile
push: true
file: ./microservices/auth_service/Dockerfile
tags: auth_service:latest

- name: Build and push city_service
uses: docker/build-push-action@v4
with:
context: .
file: ./city_service/Dockerfile
push: true
file: ./microservices/city_service/Dockerfile
tags: city_service:latest

- name: Build and push migrator
uses: docker/build-push-action@v4
with:
context: .
file: ./cmd/migrator/Dockerfile
push: true
tags: migrator:latest

- name: Build and push backend
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: backend:latest

- name: Save Docker Images
Expand Down

0 comments on commit a03282e

Please sign in to comment.