-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from uselagoon/database-tools
chore: add database-tools image
- Loading branch information
Showing
2 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* |