A WireMock Docker image based on the smallest Linux - Alpine with latest Oracle JDK.
https://github.com/TerrenceMiao/docker/tree/master/images/wiremock
𝜆 docker run -d -p 9999:8080 -v wiremock/__files:/wiremock/__files -v wiremock/mappings/:/wiremock/mappings --name wiremock wiremock
With Docker compose:
# Docker compose to have WireMock running.
---
version: '3'
services:
wiremock:
image: wiremock:latest
ports:
- 9999:8080
volumes:
- wiremock/__files:/wiremock/__files
- wiremock/mappings:/wiremock/mappings
Copyright © 2019 - Terrence Miao. Free use of this software is granted under the terms of the GNU General Public License version 3 (GPLv3).
Content type
Image
Digest
Size
63.8 MB
Last updated
over 7 years ago
docker pull jtech/wiremock