/docker-raml-server

A Docker container for running mock servers from RAML API specifications.

RAML Server as a Container

This container provides RAML Server as a Docker Container for ease of use.

It gives you fully functional REST APIs based on a RAML specification with nothing more than Docker!

Usage

Start the image with Docker:

$ docker run -v /path/to/folder/with/raml:/api androa/raml-server

Or make a docker-compose target like this:

version: '2'
services:
  api-mock:
    image: androa/raml-server
    ports:
      - 3000
    volumes:
     - ./api-spec/:/api

and run:

docker-compose up api-mock