January 2018
Intermediate to advanced
318 pages
7h 6m
English
Like the other services we have covered, we will be running a quick hello world example. This will introduce you to the difference between OpenFaaS and the other tools. We will also find out why we needed to install Docker. To start with, run the following commands:
$ mkdir hello$ cd hello$ faas-cli new --lang python hello
This will create a folder called hello and then within it, a file called hello.yml and a few folders will be created:

Next, we need to log into a Docker Hub account. To do this, run the following command:
$ docker login
If you do not have a Docker Hub account, you can sign-up for one at https://hub.docker.com/ ...
Read now
Unlock full access