Skip to content
Merged
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.35.1
ALLURE_RELEASE: 2.38.1

jobs:
build_release:
Expand Down
21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@

![](https://img.shields.io/docker/pulls/frankescobar/allure-docker-service)


> [!IMPORTANT]
> <div align="center">
>
> # <font color="red">ANNOUNCEMENT</font>
> ## <font color="red">We are developing a new open-source version designed to resolve known issues and introduce significant enhancements related to UI, functionality, and data processing. While this transition will take time, we are prioritizing development to get a build ready for our testers as soon as possible.</font>
>
> </div>

Table of contents
=================
* [FEATURES](#FEATURES)
Expand Down Expand Up @@ -101,9 +110,9 @@ The following table shows the provided Manifest Lists.

| **Tag** | **allure-docker-service Base Image** |
|----------------------------------------|-------------------------------------------------|
| latest, 2.35.1 | frankescobar/allure-docker-service:2.35.1-amd64 |
| | frankescobar/allure-docker-service:2.35.1-armv7 |
| | frankescobar/allure-docker-service:2.35.1-arm64 |
| latest, 2.38.1 | frankescobar/allure-docker-service:2.38.1-amd64 |
| | frankescobar/allure-docker-service:2.38.1-armv7 |
| | frankescobar/allure-docker-service:2.38.1-arm64 |

## USAGE
### Generate Allure Results
Expand Down Expand Up @@ -722,7 +731,7 @@ You can switch the version container using `frankescobar/allure-docker-service:$
Docker Compose example:
```sh
allure:
image: "frankescobar/allure-docker-service:2.35.1"
image: "frankescobar/allure-docker-service:2.38.1"
```
or using latest version:

Expand Down Expand Up @@ -1395,7 +1404,7 @@ docker-compose -f docker-compose-dev.yml up --build
```
### Build image
```sh
docker build --no-cache -t allure-release -f docker/Dockerfile --build-arg ALLURE_RELEASE=2.35.1 .
docker build --no-cache -t allure-release -f docker/Dockerfile --build-arg ALLURE_RELEASE=2.38.1 .
```
### Run container
```sh
Expand Down Expand Up @@ -1450,5 +1459,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.35.1
docker run -d -p 5050:5050 frankescobar/allure-docker-service:2.38.1
```
4 changes: 2 additions & 2 deletions docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ services:
context: ../allure-docker-service
dockerfile: docker/Dockerfile
args:
ALLURE_RELEASE: 2.35.1
BUILD_VERSION: 2.35.1
ALLURE_RELEASE: 2.38.1
BUILD_VERSION: 2.38.1
JDK: eclipse-temurin:11-jre-noble
environment:
DEV_MODE: 0
Expand Down
Loading