diff --git a/Dockerfile b/Dockerfile index 4225cdd..108b851 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM eclipse-temurin:11-jre LABEL maintainer="Rodolphe CHAIGNEAU " -ARG WIREMOCK_VERSION=3.8.0 +ARG WIREMOCK_VERSION=3.9.0 ENV WIREMOCK_VERSION $WIREMOCK_VERSION ENV GOSU_VERSION 1.17 diff --git a/README.md b/README.md index fdb8bf1..be18370 100644 --- a/README.md +++ b/README.md @@ -59,8 +59,8 @@ The most important tags are listed below. ### Latest images -- `3.8.0-1` [(3.8.0-1/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.8.0-1/Dockerfile) -- `3.8.0-1-alpine` [(3.8-alpine/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.8.0-1/alpine/Dockerfile) +- `3.9.0-1` [(3.9.0-1/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.9.0-1/Dockerfile) +- `3.9.0-1-alpine` [(3.9-alpine/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.9.0-1/alpine/Dockerfile) - `latest` [(latest/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/latest/Dockerfile) - `latest-alpine` [(latest-alpine/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/latest-alpine/Dockerfile) - `main` [(main/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/main/Dockerfile) @@ -111,7 +111,7 @@ you can add them to the end of the command line. For example, to enable HTTPs: `--https-port 8443 --verbose` ```sh -docker run -it --rm -p 8443:8443 wiremock/wiremock --https-port 8443 --verbose +docker run -it --rm -p 8443.9443 wiremock/wiremock --https-port 8443 --verbose ``` ### Using environment variables @@ -127,7 +127,7 @@ Example for passing the CLI options: ```sh docker run -it --rm \ -e WIREMOCK_OPTIONS='--https-port 8443 --verbose' \ - -p 8443:8443 \ + -p 8443.9443 \ --name wiremock \ wiremock/wiremock:latest ``` @@ -223,7 +223,7 @@ For HTTPs, the `8443` port is exposed by default. To run with HTTPs, run the following command: ```sh -docker run -it --rm -p 8443:8443 wiremock/wiremock --https-port 8443 --verbose +docker run -it --rm -p 8443.9443 wiremock/wiremock --https-port 8443 --verbose ``` To check the HTTPs on the default exposed port, diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 512adf5..e893917 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -2,7 +2,7 @@ FROM eclipse-temurin:11-jre-alpine LABEL maintainer="Rodolphe CHAIGNEAU " -ARG WIREMOCK_VERSION=3.8.0 +ARG WIREMOCK_VERSION=3.9.0 ENV WIREMOCK_VERSION $WIREMOCK_VERSION WORKDIR /home/wiremock