Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.27.0
ALLURE_RELEASE: 2.30.0
QEMU_VERSION: v4.0.0
DOCKER_CLI_EXPERIMENTAL: enabled

Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ The following table shows the variation of provided images.

The following table shows the provided Manifest Lists.

| **Tag** | **allure-docker-service Base Image** |
|----------------------------------------|---------------------------------------------------|
| latest, 2.27.0 | frankescobar/allure-docker-service:2.27.0-amd64 |
| | frankescobar/allure-docker-service:2.27.0-arm32v7 |
| | frankescobar/allure-docker-service:2.27.0-arm64v8 |
| **Tag** | **allure-docker-service Base Image** |
|----------------|---------------------------------------------------|
| latest, 2.30.0 | frankescobar/allure-docker-service:2.30.0-amd64 |
| | frankescobar/allure-docker-service:2.30.0-arm32v7 |
| | frankescobar/allure-docker-service:2.30.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.27.0"
image: "frankescobar/allure-docker-service:2.30.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.27.0 .
docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.30.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.27.0
docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.30.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.27.0"
ALLURE_RELEASE: "2.30.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.27.0-custom
ARG BUILD_VERSION=2.30.0-custom
ARG BUILD_REF=na
ARG ALLURE_RELEASE=2.27.0
ARG ALLURE_RELEASE=2.30.0
ARG ALLURE_REPO=https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline
ARG UID=1000
ARG GID=1000
Expand Down