Skip to content

Build and Push PostgreSQL Docker Image #18

Build and Push PostgreSQL Docker Image

Build and Push PostgreSQL Docker Image #18

Workflow file for this run

name: Build and Push Docker Images
on:
push:
branches:
- master
workflow_dispatch:
permissions:
packages: write
contents: read
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run build script
run: ./build.sh
- name: Build and push base image
uses: docker/build-push-action@v4
with:
context: ./build/BaseImage
file: ./build/BaseImage/Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_base:latest
cache-from: ghcr.io/${{ github.repository_owner }}/h3xrecon_base
platforms: linux/amd64,linux/arm64
- name: Build and push worker image
uses: docker/build-push-action@v4
with:
context: ./src/Worker
file: ./src/Worker/Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_worker:latest
platforms: linux/arm64
# - name: Build and push data processor image
# uses: docker/build-push-action@v4
# with:
# context: ./src/DataProcessor
# file: ./src/DataProcessor/Dockerfile
# push: true
# tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_dataprocessor:latest
# - name: Build and push job processor image
# uses: docker/build-push-action@v4
# with:
# context: ./src/JobProcessor
# file: ./src/JobProcessor/Dockerfile
# push: true
# tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_jobprocessor:latest
# - name: Build and push logger image
# uses: docker/build-push-action@v4
# with:
# context: ./src/Logger
# file: ./src/Logger/Dockerfile
# push: true
# tags: ghcr.io/${{ github.repository_owner }}/h3xrecon_logger:latest