This Docker image has an embedded apiman CLI, as well as the Vert.x standalone distribution, enabling you to pass it an API declaration to use. See apiman CLI documentation for syntax.
To start up apiman
docker run -it apiman/vertx-standalone
You may want to map the port(s) so you can access the app
docker run -it -p 8082:8082 apiman/vertx-standalone
You will want to provide a declaration and a headless configuration
docker run -it -p 8082:8082 -v $PWD/examples/apis:/opt/apiman/apis -v $PWD/examples/configs:/opt/apiman/configs apiman/vertx-standalone sample.yml
docker build -t="apiman/vertx-standalone" --rm .
This image is automatically built and published into Docker Hub.