From 62a7909263f39bd804b689cfcd73e1f9cfa68a43 Mon Sep 17 00:00:00 2001 From: Frank Escobar Date: Thu, 23 Feb 2023 09:24:14 +0000 Subject: [PATCH] Updating Allure Framework version 2.21.0 --- .github/workflows/docker-publish.yml | 2 +- README.md | 12 ++++++------ docker-compose-dev.yml | 2 +- docker-custom/Dockerfile.bionic-custom | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 626ffdd..75be077 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -12,7 +12,7 @@ on: env: DOCKER_IMAGE: frankescobar/allure-docker-service - ALLURE_RELEASE: 2.19.0 + ALLURE_RELEASE: 2.21.0 QEMU_VERSION: v4.0.0 DOCKER_CLI_EXPERIMENTAL: enabled diff --git a/README.md b/README.md index 3f74e09..02f0039 100644 --- a/README.md +++ b/README.md @@ -101,9 +101,9 @@ The following table shows the provided Manifest Lists. | **Tag** | **allure-docker-service Base Image** | |----------------------------------------|---------------------------------------------------| -| latest, 2.19.0 | frankescobar/allure-docker-service:2.19.0-amd64 | -| | frankescobar/allure-docker-service:2.19.0-arm32v7 | -| | frankescobar/allure-docker-service:2.19.0-arm64v8 | +| latest, 2.21.0 | frankescobar/allure-docker-service:2.21.0-amd64 | +| | frankescobar/allure-docker-service:2.21.0-arm32v7 | +| | frankescobar/allure-docker-service:2.21.0-arm64v8 | ## USAGE ### Generate Allure Results @@ -722,7 +722,7 @@ You can switch the version container using `frankescobar/allure-docker-service:$ Docker Compose example: ```sh allure: - image: "frankescobar/allure-docker-service:2.19.0" + image: "frankescobar/allure-docker-service:2.21.0" ``` or using latest version: @@ -1395,7 +1395,7 @@ docker-compose -f docker-compose-dev.yml up --build ``` ### Build image ```sh -docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.19.0 . +docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.21.0 . ``` ### Run container ```sh @@ -1446,5 +1446,5 @@ docker run -d -p 5050:5050 frankescobar/allure-docker-service ``` ### Download specific tagged image registered (Example) ```sh -docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.19.0 +docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.21.0 ``` diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index 89c4bc1..292c520 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -10,7 +10,7 @@ services: context: ../allure-docker-service dockerfile: docker-custom/Dockerfile.bionic-custom args: - ALLURE_RELEASE: "2.19.0" + ALLURE_RELEASE: "2.21.0" environment: DEV_MODE: 0 CHECK_RESULTS_EVERY_SECONDS: NONE diff --git a/docker-custom/Dockerfile.bionic-custom b/docker-custom/Dockerfile.bionic-custom index 8df618b..11ff57f 100644 --- a/docker-custom/Dockerfile.bionic-custom +++ b/docker-custom/Dockerfile.bionic-custom @@ -1,9 +1,9 @@ ARG ARCH=amd64 ARG JDK=adoptopenjdk:11-jre-openj9-bionic ARG BUILD_DATE -ARG BUILD_VERSION=2.19.0-custom +ARG BUILD_VERSION=2.21.0-custom ARG BUILD_REF=na -ARG ALLURE_RELEASE=2.19.0 +ARG ALLURE_RELEASE=2.21.0 ARG ALLURE_REPO=https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline ARG UID=1000 ARG GID=1000