Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md with information that package is published on GitHub Packages too and a simple manual to use #127

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ pull the Docker image,
and start the WireMock instance.

```shell
docker pull wiremock/wiremock:latest
docker pull wiremock/wiremock:latest # Using Docker Hub
docker pull ghcr.io/wiremock/wiremock:latest # Using GitHub Packages
git clone https://github.com/wiremock/wiremock-docker.git
docker run -it --rm \
-p 8080:8080 \
Expand Down Expand Up @@ -78,6 +79,14 @@ The most important tags are listed below.
- `3x`- Latest WireMock 3.x image, with bundled Java 11 - now `latest`
- `3x-alpine` - Latest WireMock alpine 3.x image, with bundled Java 11 - now `latest`

### GitHub Packages

The images are also available on GitHub Packages. You can pull the images using the following commands:

```shell
docker pull ghcr.io/wiremock/wiremock:latest
```

## Using WireMock in Docker

To start WireMock with the default settings:
Expand Down
Loading