Skip to content

Commit

Permalink
Merge pull request #45 from uselagoon/database-tools
Browse files Browse the repository at this point in the history
chore: add database-tools image
  • Loading branch information
tobybellwood authored Sep 19, 2023
2 parents 81fa920 + 10a97c8 commit d0a093e
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 0 deletions.
109 changes: 109 additions & 0 deletions .github/workflows/database-tools-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
name: Publish database-tools image

on:
push:
branches:
- 'main'
- 'build-image'
paths:
- 'database-tools/**'
- '.github/workflows/database-tools.yaml'
tags:
- 'database-tools-v*.*.*'
pull_request:
branches:
- 'main'
paths:
- 'database-tools/**'
- '.github/workflows/database-tools.yaml'

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout PR
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
if: ${{ github.event_name == 'pull_request' }}
with:
fetch-depth: "0"
ref: ${{ github.event.pull_request.head.sha }}
-
name: Checkout Branch or Tag
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
if: ${{ github.event_name != 'pull_request' }}
with:
fetch-depth: "0"
-
name: Create SERVICE_TAG variable
id: service_tag_var
run: |
RAW_TAG=$(echo $(git describe --abbrev=0 --tags --match 'database-tools-*'))
SERVICE_TAG=${RAW_TAG#"database-tools-"}
echo "using database-tools tag $SERVICE_TAG"
echo "SERVICE_TAG=$SERVICE_TAG" >> $GITHUB_ENV
-
name: Set version for non-tag build
if: "!startsWith(github.ref, 'refs/tags/database-tools')"
id: version_non-tag_build
run: |
DOCKER_TAG=${{ env.SERVICE_TAG }}-$(git rev-parse --short=8 HEAD)
echo "DOCKER_TAG=$DOCKER_TAG" >> $GITHUB_ENV
echo "database-tools version $DOCKER_TAG"
-
name: Set version for tag build
if: "startsWith(github.ref, 'refs/tags/database-tools')"
id: version_tag_build
run: |
DOCKER_TAG=${{ env.SERVICE_TAG }}
echo "DOCKER_TAG=$DOCKER_TAG" >> $GITHUB_ENV
echo "database-tools version $DOCKER_TAG"
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
${{ github.repository_owner }}/database-tools
ghcr.io/${{ github.repository_owner }}/database-tools
tags: |
# set edge tag for default branch
type=edge,enable={{is_default_branch}}
# set tag+build for default branch
type=raw,value=${{ env.DOCKER_TAG}},enable={{is_default_branch}}
# tag event
type=raw,value=${{ env.DOCKER_TAG}},enable=${{ startsWith(github.ref, 'refs/tags/database-tools') }}
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/database-tools') }}
# pull request event
type=ref,event=pr
# pull request event
type=ref,event=branch
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: database-tools
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
8 changes: 8 additions & 0 deletions database-tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM alpine:3.18.3
RUN apk add --no-cache bash \
grep \
sed \
mysql-client \
mongodb-tools \
postgresql-client \
&& rm -rf /var/cache/apk/*

0 comments on commit d0a093e

Please sign in to comment.