Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 683 Bytes

install.md

File metadata and controls

35 lines (24 loc) · 683 Bytes

Requirements

Install from source

git clone https://github.com/Kong/mockbin.git ./mockbin
cd mockbin

Install with npm:

npm install mockbin

Install with Docker

Building the docker image

docker build -t mockbin .

Running the docker container

To run, this image needs to be linked to a Redis container:

docker run -d --name mockbin_redis redis
docker run -d -p 8080:8080 --link mockbin_redis:redis mashape/mockbin