Skip to content

Commit

Permalink
Merge pull request #196 from Smartmind12/patch-5
Browse files Browse the repository at this point in the history
Update download-and-installation.md
  • Loading branch information
oleg-nenashev authored Oct 6, 2023
2 parents 7e77ae4 + 51e9f83 commit 96caa0c
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions _docs/download-and-installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,20 @@ conflicting versions of its dependencies. The standalone JAR is also runnable (s

## Standalone Service

### Docker

Run the following in a terminal:

{% codetabs %}

{% codetab Docker %}

```bash
docker run -it --rm -p 8080:8080 --name wiremock \
wiremock/wiremock:{{ site.wiremock_version }}
```

### Maven
{% endcodetab %}

{% codetab Maven %}

```xml
<dependency>
Expand All @@ -52,12 +56,18 @@ docker run -it --rm -p 8080:8080 --name wiremock \
</dependency>
```

### Gradle
{% endcodetab %}

{% codetab Gradle Groovy %}

```groovy
testImplementation "org.wiremock:wiremock-standalone:{{ site.wiremock_version }}"
```

{% endcodetab %}

{% endcodetabs %}

Learn more in the [Docker guide](../docker).

### Direct download
Expand Down

0 comments on commit 96caa0c

Please sign in to comment.