Skip to content

Commit

Permalink
deployment with docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
tdr12 committed Sep 10, 2024
1 parent 80d9cc8 commit 07d1d08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
password: ${{ secrets.SCALEWAY_API_KEY }}
registry: ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}
- name: Build the backend Docker image
run: docker-compose build ./backend -t ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}/delano-backend:latest
run: docker build ./backend -t ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}/delano-backend:latest
- name: Push the backend Docker Image
run: docker push ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}/delano-backend:latest

Expand All @@ -31,7 +31,7 @@ jobs:
password: ${{ secrets.SCALEWAY_API_KEY }}
registry: ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}
- name: Build the frontend Docker image
run: docker-compose build ./frontend -t ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}/ddelano-frontend:latest
run: docker build ./frontend -t ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}/ddelano-frontend:latest
- name: Push the frontend Docker Image
run: docker push ${{ secrets.CONTAINER_REGISTRY_ENDPOINT }}/delano-frontend:latest

Expand Down

0 comments on commit 07d1d08

Please sign in to comment.