docker-compose: Add start cmd for controller (#43)

* [docker-compose] updated build status badge from the incubator repo

* docker-compose: added controller start cmd

* travis build debugging

* travis build debugging

* updated to docker-compomse 1.13
4 files changed
tree: 149d3ee8ea87ca4a5c92e3a70f7dc304ad2d40af
  1. docker-compose/
  2. node-local/
  3. .gitignore
  4. .travis.yml
  5. CONTRIBUTING.md
  6. LICENSE.txt
  7. README.md
README.md

Developer tools for OpenWhisk

This repository is part of Apache OpenWhisk and provides developer tools that help with local development, testing and operation of OpenWhisk.

Subprojects

  • docker-compose allows testing OpenWhisk locally, using Docker Compose. This is ideal if you are contributing to core development
  • node-local allows testing individual OpenWhisk functions locally, using only node.js. This is ideal if you are writing node.js functions to run in OpenWhisk, but need to emulate some of OpenWhisk's behavior in creating params and expecting promises.

Travis builds

Each tool in this repository has to provide travis build scripts inside a .travis folder. The folder should define 2 scripts:

  • setup.sh - invoked during before_install phase
  • build.sh - invokes during script phase

For an example check out docker-compose/.travis folder.