Skip to content

Commit

Permalink
ci: add GitHub Actions workflow for Docker image builds
Browse files Browse the repository at this point in the history
- Add GitHub Actions workflow for building and pushing Docker images
- Trigger workflow on push to `main` branch and tags matching `v*`
- Set up QEMU and Docker Buildx for multi-platform builds
- Log in to GitHub Container Registry using secrets
- Generate Docker metadata for image tagging
- Build and push Docker images to GitHub Container Registry with caching enabled

Signed-off-by: Bo-Yi Wu <[email protected]>
  • Loading branch information
appleboy committed Jun 20, 2024
1 parent d0f7df8 commit 6f77246
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Docker Image

on:
push:
branches:
- main
tags:
- "v*"

jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

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

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker meta
id: docker-meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: downcase REPO
run: |
echo "REPO=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: homework03
platforms: linux/amd64,linux/arm,linux/arm64
file: Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/${{ env.REPO }}:buildcache
cache-to: type=registry,ref=ghcr.io/${{ env.REPO }}:buildcache,mode=max

0 comments on commit 6f77246

Please sign in to comment.