Skip to content

Commit

Permalink
Merge pull request #204 from fescobar/beta
Browse files Browse the repository at this point in the history
Updating to Allure version 2.19.0
  • Loading branch information
fescobar committed Aug 29, 2022
2 parents 7ed39ae + e2d6299 commit ce7b3eb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
DOCKER_IMAGE: frankescobar/allure-docker-service
ALLURE_RELEASE: 2.17.2
ALLURE_RELEASE: 2.19.0
QEMU_VERSION: v4.0.0
DOCKER_CLI_EXPERIMENTAL: enabled

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ The following table shows the provided Manifest Lists.

| **Tag** | **allure-docker-service Base Image** |
|----------------------------------------|---------------------------------------------------|
| latest, 2.17.2 | frankescobar/allure-docker-service:2.17.2-amd64 |
| | frankescobar/allure-docker-service:2.17.2-arm32v7 |
| | frankescobar/allure-docker-service:2.17.2-arm64v8 |
| 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 |

## USAGE
### Generate Allure Results
Expand Down Expand Up @@ -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.17.2"
image: "frankescobar/allure-docker-service:2.19.0"
```
or using latest version:
Expand Down Expand Up @@ -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.17.2 .
docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.19.0 .
```
### Run container
```sh
Expand Down Expand Up @@ -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.17.2
docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.19.0
```
2 changes: 1 addition & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
context: ../allure-docker-service
dockerfile: docker-custom/Dockerfile.bionic-custom
args:
ALLURE_RELEASE: "2.17.2"
ALLURE_RELEASE: "2.19.0"
environment:
DEV_MODE: 0
CHECK_RESULTS_EVERY_SECONDS: NONE
Expand Down
4 changes: 2 additions & 2 deletions docker-custom/Dockerfile.bionic-custom
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG ARCH=amd64
ARG JDK=adoptopenjdk:11-jre-openj9-bionic
ARG BUILD_DATE
ARG BUILD_VERSION=2.17.2-custom
ARG BUILD_VERSION=2.19.0-custom
ARG BUILD_REF=na
ARG ALLURE_RELEASE=2.17.2
ARG ALLURE_RELEASE=2.19.0
ARG ALLURE_REPO=https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline
ARG UID=1000
ARG GID=1000
Expand Down

0 comments on commit ce7b3eb

Please sign in to comment.