Skip to content

Commit

Permalink
Release as v8.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hogejo committed Oct 3, 2024
1 parent 115a1b4 commit 41351cd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ You can run the application from the flat jar file or with Docker.
For the jar file, you must have Java 21 or later installed:

```bash
java -jar high-load-stress-8.5.0.jar
java -jar high-load-stress-8.6.0.jar
```

### Docker

For Docker, you do not need to have Java installed. Just load and run the image:

```bash
docker load -i high-load-stress-8.5.0.tar
docker run high-load-stress:8.5.0 --listScenarios
docker load -i high-load-stress-8.6.0.tar
docker run high-load-stress:8.6.0 --listScenarios
```

### Docker networking
Expand All @@ -30,13 +30,13 @@ With Docker, you might need extra arguments to connect to your desired endpoint:
If the service you are testing also runs in Docker, the tester should be able to connect to it:

```bash
docker run high-load-stress:8.5.0 --endpoint other-container-address:8080
docker run high-load-stress:8.6.0 --endpoint other-container-address:8080
```

If the service you are testing runs on the host, you need to use host networking:

```bash
docker run --network host high-load-stress:8.5.0 --endpoint localhost:8080
docker run --network host high-load-stress:8.6.0 --endpoint localhost:8080
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
// Application config

group = "me.hogejo.highload.stress"
version = "8.5.0"
version = "8.6.0"

application {
mainClass.set("$group.Application")
Expand Down

0 comments on commit 41351cd

Please sign in to comment.