Skip to content

Commit

Permalink
Create docker-publish-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsingh132 authored Oct 18, 2024
1 parent 0458a60 commit ae43a66
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflow/docker-publish-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build and Push Docker Images

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

services:
docker:
image: docker:latest
options: >-
--network=host
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push frontend image
uses: docker/build-push-action@v6
with:
context: ./frontend
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/booksby-frontend:latest
build-args: |
REACT_APP_BACKEND_URL=${{ vars.REACT_APP_BACKEND_URL }}
- name: Build and push backend image
uses: docker/build-push-action@v6
with:
context: ./backend
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/booksby-backend:latest
build-args: |
FRONTEND_URL=${{ vars.FRONTEND_URL }}

0 comments on commit ae43a66

Please sign in to comment.