It is a server-side stub service for easy testing third-party integrations in complex software systems
docker build -t mock .
docker run --rm -t -p 8888:8888 mock
curl -X 'POST' \
'http://localhost:8888/mocks/first/data' \
-H 'Authorization: Bearer token' \
-d 'It'\''s my first mock'
curl http://localhost:8888/mocks/first/call
http://localhost:8888/swagger-ui/index.html