From cb41d5864e5b9929e715774379f6d841bea246e1 Mon Sep 17 00:00:00 2001 From: "Enderson Menezes (Mr. Enderson)" Date: Wed, 8 Jan 2025 14:41:58 -0300 Subject: [PATCH] Update README.md with information that package is published on GitHub Packages too and a simple manual to use Update `README.md` to include information about GitHub Packages and usage instructions. * Add instructions for pulling the Docker image from GitHub Packages in the "Quick Start" section. * Add a new section "GitHub Packages" with instructions for pulling images from GitHub Packages. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/wiremock/wiremock-docker?shareId=XXXX-XXXX-XXXX-XXXX). --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 00849d2..07b9232 100644 --- a/README.md +++ b/README.md @@ -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 \ @@ -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: