rveguilla / docker-mountebank

Docker container to run Mountebank

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mountebank Docker Image

Provides mountebank.

Supported tags and respective Dockerfile links

expert360/mountebank:latest

Installs the latest version of mountebank and exposes port 2525 ready for configuration and testing.

Running mountebank is achieved by:

docker run -p 2525:2525 -d expert360/mountebank

and then visiting localhost:2525.

If you wish to load your imposters automatically, mount your imposters as a volume and bind the necessary ports:

docker run \
    -v ./imposters:/imposters \
    [-p IMPOSTER_1_PORT:IMPOSTER_1_PORT ...] \
    -p 2525:2525 \
    -d expert360/mountebank \
    --configfile /imposters/imposters.ejs --allowInjection

About

Docker container to run Mountebank

License:MIT License