Use prebuilt openwhisk images for docker-compose (#25)

* [docker-compose] - use prebuilt openwhisk images on docker hub without building locally
* Add docker build command back for dev use cases
* Use the latest version of openwhisk images
* fix indentation
* update build-cli command to avoid confusion with the existing init-whisk-cli one
2 files changed
tree: 989eadc54c9e9319408e4b67bf673b4fc4566b19
  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.