Skip to content

Publish docker images on GitHub and docker hub #1

Publish docker images on GitHub and docker hub

Publish docker images on GitHub and docker hub #1

Workflow file for this run

# Create release files
name: Release
on: push
env:
DOCKER_IMAGE: radarbase/data-dashboard-backend
jobs:
# Build and push tagged release docker image
docker:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- name: Set environment variables
run: |
# Short name for current branch. For PRs, use target branch (base ref)
GIT_BRANCH=${GITHUB_BASE_REF:-${GITHUB_REF#refs/heads/}}
echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV
# Add Docker labels and tags
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v4
with:
images: ${{ env.DOCKER_IMAGE }}-${{ env.GIT_BRANCH }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
# Allow running the image on the architectures supported by openjdk:11-jre-slim
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
context: .
# Use runtime labels from docker_meta as well as fixed labels
labels: |
${{ steps.docker_meta.outputs.labels }}
maintainer=Pim van Nierop <pim@thehyve.nl>
org.opencontainers.image.authors=Pauline Conde @mpgxvii, Pim van Nierop @pvanierop, Bastiaan de Graaf @bdegraaf1234
org.opencontainers.image.vendor=RADAR-base
org.opencontainers.image.licenses=Apache-2.0
- name: Inspect image
run: |
docker pull ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }}
docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }}