$ docker run -p 9000:9000 minio/minio server /data
Created minio configuration file successfully at /root/.minio

Endpoint: http://172.17.0.2:9000 http://127.0.0.1:9000
AccessKey: 68L8DJU1TKT8YBGI2GX5
SecretKey: ufUVWIbXZTb7oeJRg+VS7YWI5NuzKrefhgGVC3hP
...

$ mc config host add myminio http://172.17.0.2:9000 68L8DJU1TKT8YBGI2GX5 ufUVWIbXZTb7oeJRg+VS7YWI5NuzKrefhgGVC3hP
Added `myminio` successfully.

$ mc mb myminio/incoming
Bucket created successfully `myminio/incoming`.
$ mc mb myminio/processed Bucket
created successfully `myminio/processed`.

$ mkdir faas/functions/
$ cd faas/functions/
$ faas-cli new --lang python delegatefunctions
$ faas-cli new --lang python loadimages
$ faas-cli new --lang python processimages
$ ls -l
drwx------  2 jab users 4096 Jul 16 15:31 delegatefunctions
-rw-------  1 jab users  168 Jul 16 15:31 delegatefunctions.yml
drwx------  2 jab users 4096 Jul 16 15:31 loadimages
-rw-------  1 jab users  147 Jul 16 15:31 loadimages.yml
drwx------  2 jab users 4096 Jul 16 15:31 processimages
-rw-------  1 jab users  156 Jul 16 15:31 processimages.yml
drwxr-xr-x 15 jab users 4096 Jul 16 15:31 template
