Skip to content

Commit 9bc928d

Browse files
committed
Updating Allure to 2.17.1
1 parent cc14c0c commit 9bc928d

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
env:
1414
DOCKER_IMAGE: frankescobar/allure-docker-service
15-
ALLURE_RELEASE: 2.17.0
15+
ALLURE_RELEASE: 2.17.1
1616
QEMU_VERSION: v4.0.0
1717
DOCKER_CLI_EXPERIMENTAL: enabled
1818

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
[![](resources/docker.png)](https://docs.docker.com/)
33

44
# ALLURE DOCKER SERVICE
5+
[![](https://github.com/fescobar/allure-docker-service/actions/workflows/docker-publish.yml/badge.svg?branch=master)](https://github.com/fescobar/allure-docker-service/actions?query=branch%3Amaster)
6+
7+
58
Table of contents
69
=================
710
* [FEATURES](#FEATURES)
@@ -96,9 +99,9 @@ The following table shows the provided Manifest Lists.
9699

97100
| **Tag** | **allure-docker-service Base Image** |
98101
|----------------------------------------|---------------------------------------------------|
99-
| latest, 2.17.0 | frankescobar/allure-docker-service:2.17.0-amd64 |
100-
| | frankescobar/allure-docker-service:2.17.0-arm32v7 |
101-
| | frankescobar/allure-docker-service:2.17.0-arm64v8 |
102+
| latest, 2.17.1 | frankescobar/allure-docker-service:2.17.1-amd64 |
103+
| | frankescobar/allure-docker-service:2.17.1-arm32v7 |
104+
| | frankescobar/allure-docker-service:2.17.1-arm64v8 |
102105

103106
## USAGE
104107
### Generate Allure Results
@@ -717,7 +720,7 @@ You can switch the version container using `frankescobar/allure-docker-service:$
717720
Docker Compose example:
718721
```sh
719722
allure:
720-
image: "frankescobar/allure-docker-service:2.17.0"
723+
image: "frankescobar/allure-docker-service:2.17.1"
721724
```
722725
or using latest version:
723726

@@ -1387,7 +1390,7 @@ docker-compose -f docker-compose-dev.yml up --build
13871390
```
13881391
### Build image
13891392
```sh
1390-
docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.17.0 .
1393+
docker build -t allure-release -f docker-custom/Dockerfile.bionic-custom --build-arg ALLURE_RELEASE=2.17.1 .
13911394
```
13921395
### Run container
13931396
```sh
@@ -1438,5 +1441,5 @@ docker run -d -p 5050:5050 frankescobar/allure-docker-service
14381441
```
14391442
### Download specific tagged image registered (Example)
14401443
```sh
1441-
docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.17.0
1444+
docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.17.1
14421445
```

deprecated/.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ language: bash
88

99
env:
1010
global:
11-
- ALLURE_RELEASE=2.17.0
11+
- ALLURE_RELEASE=2.17.1
1212
- TARGET=frankescobar/allure-docker-service
1313
- QEMU_VERSION=v4.0.0
1414
matrix:

docker-compose-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
context: ../allure-docker-service
1111
dockerfile: docker-custom/Dockerfile.bionic-custom
1212
args:
13-
ALLURE_RELEASE: "2.17.0"
13+
ALLURE_RELEASE: "2.17.1"
1414
environment:
1515
DEV_MODE: 0
1616
CHECK_RESULTS_EVERY_SECONDS: NONE

docker-custom/Dockerfile.bionic-custom

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ARG ARCH=amd64
22
ARG JDK=adoptopenjdk:11-jre-openj9-bionic
33
ARG BUILD_DATE
4-
ARG BUILD_VERSION=2.17.0-custom
4+
ARG BUILD_VERSION=2.17.1-custom
55
ARG BUILD_REF=na
6-
ARG ALLURE_RELEASE=2.17.0
6+
ARG ALLURE_RELEASE=2.17.1
77
ARG ALLURE_REPO=https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline
88
ARG UID=1000
99
ARG GID=1000

0 commit comments

Comments
 (0)