Skip to content

Commit

Permalink
upgrade to version 3.10.0-1
Browse files Browse the repository at this point in the history
  • Loading branch information
wiremockio committed Nov 29, 2024
1 parent 2f56ec1 commit ffbcd61
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM eclipse-temurin:11.0.24_8-jre

LABEL maintainer="Rodolphe CHAIGNEAU <[email protected]>"

ARG WIREMOCK_VERSION=3.9.2
ARG WIREMOCK_VERSION=3.10.0
ENV WIREMOCK_VERSION=$WIREMOCK_VERSION
ENV GOSU_VERSION=1.17

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ The most important tags are listed below.

### Latest images

- `3.9.2-1` [(3.9.2-1/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.9.2-1/Dockerfile)
- `3.9.2-1-alpine` [(3.9-alpine/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.9.2-1/alpine/Dockerfile)
- `3.10.0-1` [(3.10.0-1/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.10.0-1/Dockerfile)
- `3.10.0-1-alpine` [(3.10-alpine/Dockerfile)](https://github.com/wiremock/wiremock-docker/blob/3.10.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)
Expand Down Expand Up @@ -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.9443 wiremock/wiremock --https-port 8443 --verbose
docker run -it --rm -p 8443.10443 wiremock/wiremock --https-port 8443 --verbose
```

### Using environment variables
Expand All @@ -127,7 +127,7 @@ Example for passing the CLI options:
```sh
docker run -it --rm \
-e WIREMOCK_OPTIONS='--https-port 8443 --verbose' \
-p 8443.9443 \
-p 8443.10443 \
--name wiremock \
wiremock/wiremock:latest
```
Expand Down Expand Up @@ -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.9443 wiremock/wiremock --https-port 8443 --verbose
docker run -it --rm -p 8443.10443 wiremock/wiremock --https-port 8443 --verbose
```

To check the HTTPs on the default exposed port,
Expand Down
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM eclipse-temurin:11-jre-alpine

LABEL maintainer="Rodolphe CHAIGNEAU <[email protected]>"

ARG WIREMOCK_VERSION=3.9.2
ARG WIREMOCK_VERSION=3.10.0
ENV WIREMOCK_VERSION=$WIREMOCK_VERSION

WORKDIR /home/wiremock
Expand Down

0 comments on commit ffbcd61

Please sign in to comment.