The official Docker image for WireMock Standalone deployments. It includes WireMock for Java under the hood, and fully compatible with its features. You can learn more about WireMock standalone on the WireMock docs site.
In a temporary directory, checkout the demo repository, pull the Docker image, and start the WireMock instance.
docker pull wiremock/wiremock:latest git clone https://github.com/wiremock/wiremock-docker.git docker run -it --rm \ -p 8080:8080 \ -v $PWD/wiremock-docker/samples/hello/stubs:/home/wiremock \ wiremock/wiremock:latest
You will get a CLI output like this one:
██ ██ ██ ██████ ███████ ███ ███ ██████ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ████ ████ ██ ██ ██ ██ ██ ██ █ ██ ██ ██████ █████ ██ ████ ██ ██ ██ ██ █████ ██ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ███ ███ ██ ██ ██ ███████ ██ ██ ██████ ██████ ██ ██ ---------------------------------------------------------------- | Cloud: https://wiremock.io/cloud | | Slack: https://slack.wiremock.org | ---------------------------------------------------------------- port: 8080 enable-browser-proxying: false no-request-journal: false verbose: false extensions: response-template,webhook
There are multiple image tags provided for end users. These tags are available on DockerHub and GitHub Packages, see the full list here. The most important tags are listed below.
3.9.1-1
(3.9.1-1/Dockerfile)3.9.1-1-alpine
(3.9-alpine/Dockerfile)latest
(latest/Dockerfile)latest-alpine
(latest-alpine/Dockerfile)main
(main/Dockerfile)main-alpine
(main-alpine/Dockerfile)2.35.1-1
(2.35.1-1/Dockerfile)2.35.1-1-alpine
(2.35.1-1-alpine/Dockerfile)nightly
(main/Dockerfile-nightly)nightly-alpine
(main-alpine/Dockerfile-nightly)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
To start WireMock with the default settings:
docker run -it --rm -p 8080:8080 wiremock/wiremock
By default, the image exposes the 8080 port for HTTP.
To verify the WireMock state,
access http://localhost:8080/__admin/health to display the health status and the information.
The /__admin/health
endpoint is available for WireMock 3.1.0 or above.
A HEALTHCHECK is also built into the docker image to allow direct querying of the docker container's health status. Under the hood, this uses the same method as above to verify the status of the container.
You can configure WireMock using the following ways:
wiremock/wiremock
as a base imageTo start with these WireMock arguments,
you can add them to the end of the command line.
For example, to enable HTTPs: --https-port 8443 --verbose
docker run -it --rm -p 8443.9443 wiremock/wiremock --https-port 8443 --verbose
The following environment variables are supported by the image:
uid
: the container executor uid, useful to avoid file creation owned by rootJAVA_OPTS
: for passing any custom options to Java e.g. -Xmx128m
WIREMOCK_OPTIONS
: CLI options to be passed to WireMock (starting from 3.2.0-2
).Example for passing the CLI options:
docker run -it --rm \ -e WIREMOCK_OPTIONS='--https-port 8443 --verbose' \ -p 8443.9443 \ --name wiremock \ wiremock/wiremock:latest
Inside the container, the WireMock uses /home/wiremock
as the root from which it reads the mappings
and __files
directories.
This means you can mount a directory containing these from your host machine into Docker and WireMock will load the stub mappings.
To mount the current directory use -v $PWD:/home/wiremock
e.g.:
docker run -it --rm \ -p 8080:8080 \ --name wiremock \ -v $PWD:/home/wiremock \ wiremock/wiremock:{{ site.wiremock_version }}
Inside the container, the WireMock uses /home/wiremock
as the root from which it reads the mappings
and __files
directories.
This means you can copy your configuration from your host machine into Docker and WireMock will load the stub mappings.
WireMock utilizes a custom entrypoint script that passes all provided arguments as WireMock startup parameters. To modify the WireMock launch parameters it is recommended to override the entrypoint in your custom Docker image.
# Sample Dockerfile FROM wiremock/wiremock:latest COPY wiremock /home/wiremock ENTRYPOINT ["/docker-entrypoint.sh", "--global-response-templating", "--disable-gzip", "--verbose"]
You can use any WireMock extension with the Docker image. They can be added via CLI and volumes, but for most of the use-cases it is recommended to build a custom image by extending the official one.
For old style extensions (that don't have Java service loader metadata) you need to add the extension JAR file into the extensions directory and
specify the name of the extension's main class via the --extensions
parameter:
# prepare extension folder mkdir wiremock-docker/samples/random/extensions # download extension wget https://repo1.maven.org/maven2/com/opentable/wiremock-body-transformer/1.1.3/wiremock-body-transformer-1.1.3.jar \ -O wiremock-docker/samples/random/extensions/wiremock-body-transformer-1.1.3.jar # run a container using extension docker run -it --rm \ -p 8080:8080 \ -v $PWD/wiremock-docker/samples/random/stubs:/home/wiremock \ -v $PWD/wiremock-docker/samples/random/extensions:/var/wiremock/extensions \ wiremock/wiremock \ --extensions com.opentable.extension.BodyTransformer
For new style extensions the --extensions
part should not be included as the extension will be discovered and loaded automatically:
# prepare extension folder mkdir wiremock-docker/samples/random/extensions # download extension wget https://repo1.maven.org/maven2/org/wiremock/wiremock-grpc-extension-standalone/0.5.0/wiremock-grpc-extension-standalone-0.5.0.jar \ -O wiremock-docker/samples/random/extensions/wiremock-grpc-extension-standalone-0.5.0.jar # run a container using extension docker run -it --rm \ -p 8080:8080 \ -v $PWD/wiremock-docker/samples/random/stubs:/home/wiremock \ -v $PWD/wiremock-docker/samples/random/extensions:/var/wiremock/extensions \ wiremock/wiremock
git clone https://github.com/wiremock/wiremock-docker.git docker build -t wiremock-random wiremock-docker/samples/random docker run -it --rm -p 8080:8080 wiremock-random
Access http://localhost:8080/random to show random number
For HTTPs, the 8443
port is exposed by default.
To run with HTTPs, run the following command:
docker run -it --rm -p 8443.9443 wiremock/wiremock --https-port 8443 --verbose
To check the HTTPs on the default exposed port, use https://localhost:8443/__admin to check HTTPs working.
In Record mode, when binding host folders (e.g. $PWD/test) with the container volume (/home/wiremock), the created files will be owned by root, which is, in most cases, undesired.
To avoid this, you can use the uid
docker environment variable to also bind host uid with the container executor uid.
docker run -d --name wiremock-container \ -p 8080:8080 \ -v $PWD/test:/home/wiremock \ -e uid=$(id -u) \ wiremock/wiremock \ --proxy-all="http://registry.hub.docker.com" \ --record-mappings --verbose curl http://localhost:8080 docker rm -f wiremock-container
Check the created file owner with
ls -alR test
However, the example above is a facility. The good practice is to create yourself the binded folder with correct permissions and to use the -u docker argument.
mkdir test docker run -d --name wiremock-container \ -p 8080:8080 \ -v $PWD/test:/home/wiremock \ -u $(id -u):$(id -g) \ wiremock/wiremock \ --proxy-all="http://registry.hub.docker.com" \ --record-mappings --verbose curl http://localhost:8080 docker rm -f wiremock-container
Check the created file owner with
ls -alR test
Configuration in compose file is similar to Dockerfile definition
# Sample compose file version: "3" services: wiremock: image: "wiremock/wiremock:latest" container_name: my_wiremock entrypoint: ["/docker-entrypoint.sh", "--global-response-templating", "--disable-gzip", "--verbose"]
You can also mount your local __files
and mappings
files into the container e.g:
# Sample compose file version: "3" services: wiremock: image: "wiremock/wiremock:latest" container_name: my_wiremock volumes: - ./__files:/home/wiremock/__files - ./mappings:/home/wiremock/mappings entrypoint: ["/docker-entrypoint.sh", "--global-response-templating", "--disable-gzip", "--verbose"]
一站式AI创作平台
提供 AI 驱动的图片、视频生成及数字人等功能,助力创意创作
AI办公助手,复杂任务高效处理
AI办公助手,复杂任务高效处理。办公效率低?扣子空间AI助手支持播客生成、PPT制作、网页开发及报告写作,覆盖科研、商业、舆情等领域的专家Agent 7x24小时响应,生活工作无缝切换,提升50%效率!
AI数字人视频创作平台
Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。
AI辅助编程,代码自动修复
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
AI小说写作助手,一站式润色、改写、扩写
蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。
全能AI智能助手,随时解答生活与工作的多样问题
问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。
实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用 户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号