Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danhumphrey/wiredock
WireMock is a flexible API mocking tool for fast, robust and comprehensive testing. WireDock runs WireMock in Docker
https://github.com/danhumphrey/wiredock
docker docker-image dockerfile wiremock wiremock-dockerfile
Last synced: 28 days ago
JSON representation
WireMock is a flexible API mocking tool for fast, robust and comprehensive testing. WireDock runs WireMock in Docker
- Host: GitHub
- URL: https://github.com/danhumphrey/wiredock
- Owner: danhumphrey
- Created: 2015-04-28T06:54:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-21T00:58:48.000Z (over 6 years ago)
- Last Synced: 2023-03-27T16:51:46.043Z (over 1 year ago)
- Topics: docker, docker-image, dockerfile, wiremock, wiremock-dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WireDock
A simple WireMock Dockerfile.
>WireMock is a flexible library for stubbing and mocking web services. Unlike general purpose mocking tools it works by creating an actual HTTP server that your code under test can connect to as it would a real web service.
For more information, visit the [WireMock website](http://wiremock.org/)
## WireMock Version
1.55## Running
Port 8080 is exposed for port mapping, but this can be mapped to any local port
docker run -p 9999:8080 danhumphrey/wiredock
### Volumes
The following volumes are mounted for serving files and json mappings
* /wiremock/__files
* /wiremock/mappingseg.
docker run -p 8080:8080 -v ~/Desktop/wiredock/mappings:/wiredock/mappings danhumphrey/wiredock
### Arguments
Arguments can be passed to switch on proxy recording, verbose logging etc.
eg.
docker run -p 8080:8080 -v ~/Desktop/wiredock/mappings:/wiredock/mappings danhumphrey/wiredock --verbose