From ce6b57c9132e751653663f0ee50e9ff3683b1d63 Mon Sep 17 00:00:00 2001 From: Alexander Zagniotov Date: Wed, 17 Jan 2024 11:49:50 -0800 Subject: [PATCH] Update README.md (#473) --- README.md | 2 +- docs/DOCKERHUB.md | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e9f9da78..991e1614 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Full documentation hosted at [https://stubby4j.com](https://stubby4j.com), which There are a number of use cases where you'd want to use `WebSockets`, `HTTP/1.1`, `HTTP/2` stub server in your development/QA environment. If you are a `Software Engineer`/`Test Engneer`/`QA`, then it should hit close to home with you. As an example, some of these use cases are outlined below (this is by no means an exhaustive list). Use `stubby4j` when you want to: -* Dockerzied. Stub out external services in a Docker based micro-service architecture +* Dockerzied. Stub out external services in a Docker based micro-service architecture (ARM64 Docker images are also available!) * Support for `TLS` protocol versions `1.0`, `1.1`, `1.2` and `1.3` * Support for `HTTP/2` over TCP (`h2c`) and `HTTP/2` over TLS (`h2`) on TLS v1.2 or newer using ALPN extension * Verify that your code makes `HTTP/1.1` or `HTTP/2` (over TLS) requests with all the required parameters and/or headers diff --git a/docs/DOCKERHUB.md b/docs/DOCKERHUB.md index 7e425e80..72a7b889 100644 --- a/docs/DOCKERHUB.md +++ b/docs/DOCKERHUB.md @@ -36,16 +36,19 @@ The following `stubby4j` Docker images are available ([Alpine-Native Zulu OpenJD See [https://github.com/azagniotov/stubby4j/blob/master/CHANGELOG.md](https://github.com/azagniotov/stubby4j/blob/master/CHANGELOG.md) for more information #### stubby4j versions on Alpine-Native Zulu OpenJDK JRE 8 -* [`7.5.2-jre8`](https://github.com/azagniotov/stubby4j/blob/v7.5.2/docker/jdk8/Dockerfile) -* [`latest-jre8`](https://github.com/azagniotov/stubby4j/blob/master/docker/jdk8/Dockerfile) +* [`7.5.2-jre8 (linux/amd64)`](https://github.com/azagniotov/stubby4j/blob/v7.5.2/docker/jdk8/Dockerfile) +* [`latest-jre8 (linux/amd64, linux/arm64)`](https://github.com/azagniotov/stubby4j/blob/master/docker/jdk8/Dockerfile.arm64) #### stubby4j versions on Alpine-Native Zulu OpenJDK JRE 11 -* [`7.5.2-jre11`](https://github.com/azagniotov/stubby4j/blob/v7.5.2/docker/jdk11/Dockerfile) -* [`latest-jre11`](https://github.com/azagniotov/stubby4j/blob/master/docker/jdk11/Dockerfile) +* [`7.5.2-jre11 (linux/amd64)`](https://github.com/azagniotov/stubby4j/blob/v7.5.2/docker/jdk11/Dockerfile) +* [`latest-jre11 (linux/amd64, linux/arm64)`](https://github.com/azagniotov/stubby4j/blob/master/docker/jdk11/Dockerfile.arm64) #### stubby4j versions on Alpine-Native Zulu OpenJDK JRE 16 -* [`7.5.2-jre16`](https://github.com/azagniotov/stubby4j/blob/v7.5.2/docker/jdk16/Dockerfile) -* [`latest-jre16`](https://github.com/azagniotov/stubby4j/blob/master/docker/jdk16/Dockerfile) +* [`7.5.2-jre16 (linux/amd64)`](https://github.com/azagniotov/stubby4j/blob/v7.5.2/docker/jdk16/Dockerfile) +* [`latest-jre16 (linux/amd64)`](https://github.com/azagniotov/stubby4j/blob/master/docker/jdk16/Dockerfile) + +#### stubby4j versions on Alpine-Native Zulu OpenJDK JRE 17 +* [`latest-jre17 (linux/amd64, linux/arm64)`](https://github.com/azagniotov/stubby4j/blob/master/docker/jdk17/Dockerfile.arm64) # What is `stubby4j`?