April 2018
Intermediate to advanced
250 pages
5h 42m
English
At the time of writing, the quickest way to install OpenWhisk on a local machine is to use Docker and Docker Compose.
To install Docker Compose, we can follow instructions from https://github.com/docker/compose/releases:
$ sudo curl -L https://github.com/docker/compose/releases/download/1.17.1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose$ sudo chmod +x /usr/local/bin/docker-compose
To check the version of Docker Compose, use the following command:
$ docker-compose --versiondocker-compose version 1.17.1, build 6d101fb
We use Docker Compose 1.17.1 in this chapter.
Also check if the Git is installed already. If so, now we are ready to install a local OpenWhisk instance.
First, clone the OpenWhisk ...
Read now
Unlock full access