feat: Read version from image

feat: Read version from image
This commit is contained in:
Kroese 2023-11-29 18:13:37 +01:00 committed by GitHub
commit f32d8cbefc
5 changed files with 32 additions and 47 deletions

View File

@ -35,6 +35,20 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
-
name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
context: git
images: |
${{ secrets.DOCKERHUB_REPO }}
ghcr.io/${{ github.repository }}
tags: |
type=raw,value=latest,priority=100
type=raw,value=${{ vars.MAJOR }}.${{ vars.MINOR }}
labels: |
org.opencontainers.image.title=${{ vars.NAME }}
- -
name: Set up Docker Buildx name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
@ -51,54 +65,28 @@ jobs:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- -
name: Build Docker image name: Build Docker image
id: build uses: docker/build-push-action@v5
run: | with:
#!/bin/bash context: .
push: true
DIRECTORY="." provenance: false
PLATFORMS="linux/amd64,linux/arm64" platforms: linux/amd64,linux/arm64
VERSION="${{ vars.MAJOR }}.${{ vars.MINOR }}" tags: ${{ steps.meta.outputs.tags }}
echo "version=${VERSION}" >> $GITHUB_OUTPUT labels: ${{ steps.meta.outputs.labels }}
BUILD_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')" annotations: ${{ steps.meta.outputs.labels }}
TITLE="$(grep --only-matching --perl-regex "(?<=image.title\=).*" $DIRECTORY/Dockerfile | sed -e 's/ /\xc2\xa0/g')" build-args: |
DESC="$(grep --only-matching --perl-regex "(?<=image.description\=).*" $DIRECTORY/Dockerfile | sed -e 's/ /\xc2\xa0/g')" VCS_REF=${GITHUB_SHA::8}
VERSION_ARG=${{ steps.meta.outputs.version }}
TAGS=()
TAGS=("${{ github.repository }}:latest")
TAGS+=("${{ github.repository }}:${VERSION}")
TAGS+=("ghcr.io/${{ github.repository }}:latest")
TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}")
LABELS=()
LABELS=("org.opencontainers.image.licenses=MIT")
LABELS+=("org.opencontainers.image.title=${TITLE}")
LABELS+=("org.opencontainers.image.description=${DESC}")
LABELS+=("org.opencontainers.image.version=${VERSION}")
LABELS+=("org.opencontainers.image.created=${BUILD_DATE}")
LABELS+=("org.opencontainers.image.revision=${GITHUB_RUN_ID}")
LABELS+=("org.opencontainers.image.url=https://hub.docker.com/r/${{ github.repository }}")
LABELS+=("org.opencontainers.image.source=https://github.com/${{ github.repository }}")
docker buildx build --progress=plain \
--platform "${PLATFORMS}" \
--output "type=image,push=true" \
--build-arg "VERSION_ARG=${VERSION}" \
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
$(printf '%s' "${LABELS[@]/#/ --label }" ) \
$(printf '%s' "${LABELS[@]/#/ --annotation }" ) \
$(printf '%s' "${TAGS[@]/#/ --tag }" ) "${DIRECTORY}"
rm -f ${HOME}/.docker/config.json
- -
name: Create a release name: Create a release
uses: action-pack/github-release@v2 uses: action-pack/github-release@v2
env: env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
with: with:
tag: "v${{ steps.build.outputs.version }}" tag: "v${{ steps.meta.outputs.version }}"
title: "v${{ steps.build.outputs.version }}" title: "v${{ steps.meta.outputs.version }}"
- -
name: Increment version variable name: Increment version variable
uses: action-pack/bump@v2 uses: action-pack/bump@v2

View File

@ -50,10 +50,7 @@ ENV DISK_SIZE "16G"
ENV RAM_SIZE "512M" ENV RAM_SIZE "512M"
ARG VERSION_ARG="0.0" ARG VERSION_ARG="0.0"
ENV VERSION=$VERSION_ARG RUN echo "$VERSION_ARG" > /run/version
LABEL org.opencontainers.image.title="Virtual DSM"
LABEL org.opencontainers.image.description="Virtual DSM in a docker container"
HEALTHCHECK --interval=60s --start-period=45s --retries=2 CMD /run/check.sh HEALTHCHECK --interval=60s --start-period=45s --retries=2 CMD /run/check.sh

View File

@ -9,6 +9,7 @@ services:
RAM_SIZE: "512M" RAM_SIZE: "512M"
devices: devices:
- /dev/kvm - /dev/kvm
- /dev/net/tun
- /dev/vhost-net - /dev/vhost-net
device_cgroup_rules: device_cgroup_rules:
- 'c *:* rwm' - 'c *:* rwm'

View File

@ -34,7 +34,6 @@ services:
DISK_SIZE: "16G" DISK_SIZE: "16G"
devices: devices:
- /dev/kvm - /dev/kvm
- /dev/vhost-net
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN
ports: ports:

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -Eeuo pipefail set -Eeuo pipefail
echo " Starting Virtual DSM for Docker v${VERSION}..." echo " Starting Virtual DSM for Docker v$(</run/version)..."
echo " For support visit https://github.com/vdsm/virtual-dsm/" echo " For support visit https://github.com/vdsm/virtual-dsm/"
cd /run cd /run