diff --git a/doc/README.md b/doc/README.md
index 3cbe42d..175b732 100644
--- a/doc/README.md
+++ b/doc/README.md
@@ -10,4 +10,4 @@ FADI Documentation
* [Proxmox](https://www.proxmox.com/en/) as a self-hosted private cloud (IaaS) provider. It provides virtual machines for the various Kubernetes nodes.
* [Rancher](https://rancher.com/what-is-rancher/what-rancher-adds-to-kubernetes/) to manage (install, provision, maintain, upgrade, ...) several Kubernetes clusters, e.g. when needing several environments on various IaaS providers or several well separated tenant installations, or doing airgapped installations on premises.
-For tutorials and examples, see the [examples section](../examples/README.md)
+For tutorials and examples, see the [examples section](../examples/README.md)
\ No newline at end of file
diff --git a/doc/deployment/GKE.md b/doc/deployment/GKE.md
deleted file mode 100644
index e69de29..0000000
diff --git a/doc/deployment/openshift.md b/doc/deployment/openshift.md
deleted file mode 100644
index e69de29..0000000
diff --git a/doc/images/logos/binderhub.png b/doc/images/logos/binderhub.png
new file mode 100644
index 0000000..9df01b1
Binary files /dev/null and b/doc/images/logos/binderhub.png differ
diff --git a/examples/README.md b/examples/README.md
index aedf11b..54cceb6 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -4,4 +4,5 @@ FADI examples
This section contains various usage examples for FADI:
* [basic example](/USERGUIDE.md) with batch ingestion
-* [streaming ingestion](examples/kafka/README.md) with streaming ingestion with the help of the [Apache Kafka](https://kafka.apache.org) message broker
\ No newline at end of file
+* [streaming ingestion](examples/kafka/README.md) with streaming ingestion with the help of the [Apache Kafka](https://kafka.apache.org) message broker
+* [on-demand compute environments](examples/binderhub/README.md) with [BinderHub](https://binderhub.readthedocs.io/en/latest/)
\ No newline at end of file
diff --git a/examples/binderhub/README.md b/examples/binderhub/README.md
new file mode 100644
index 0000000..7ca79e7
--- /dev/null
+++ b/examples/binderhub/README.md
@@ -0,0 +1,108 @@
+BinderHub
+===========
+
+* [What is BinderHub](#what-is-binderhub)
+* [Add Binderhub to FADI](#add-binderhub-to-fadi)
+* [Basic example of BinderHub workflow](#basic-example-of-binderhub-workflow)
+ * [BinderHub Configuration](#binderhub-configuration)
+ * [Build the image](#building-the-image)
+ * [Publish the image](#publishing-the-image)
+ * [View the project in JupyterHub](#view-the-project-in-jupyterhub)
+ * [Launch the project](#launch-the-project)
+* [References](#references)
+
+## What is Binderhub
+
+
+
+> *The primary goal of BinderHub is creating custom computing environments that can be used by many remote users. BinderHub enables an end user to easily specify a desired computing environment from a Git repo. BinderHub then serves the custom computing environment at a URL which users can access remotely.*
+
+> *BinderHub will build Docker images out of Git repositories, and then push them to a Docker registry so that JupyterHub can launch user servers based on these images*
+
+## Prerequisites
+
+We assume in this documentation that
+
+* you have already a Kubernetes cluster deployed. If not, you can refer and follow our [Installation guide](https://github.com/cetic/fadi/blob/master/INSTALL.md) to install a local minikube cluster.
+* you will have a [valid Docker account](https://hub.docker.com/signup/).
+
+## Add BinderHub to FADI
+
+Follow the following steps to install FADI with BinderHub on your cluster:
+
+1. Clone this repository and go to the [BinderHub example folder](/examples/binderhub):
+
+```bash
+git clone https://github.com/cetic/fadi.git fadi
+cd fadi/examples/binderhub
+```
+
+2. Edit the [`config.yaml`](/examples/binderhub/config.yaml) file to set your Docker credentials (you need a Docker account because the containerized notebook will be stored on the official Docker registry - [Docker Hub](https://hub.docker.com/signup/)) and the name of your project:
+
+```yaml
+config:
+ BinderHub:
+ use_registry: true
+ image_prefix: /-
+registry:
+ username:
+ password:
+```
+
+> The prefix of an image is always built in the same way when you want to save a container image in the Docker Hub. First the *username*, *a backslash* and then the *name of the project*. In our case, BinderHub will be responsible for adding a tag to version the container image.
+
+3. Launch the Helm scripts, those will deploy all the FADI services and BinderHub on the cluster (this may take some time).
+```bash
+../helm/deploy.sh
+./deploy_binderhub.sh
+# see deploy.log for connection information to the various services
+```
+> The first script deploys FADI. It is important to do this from the **fadi/examples/binderhub** folder so that the **values.yaml** file is taken into account and that JupyterHub is not deployed. The second script will deploy BinderHub.
+
+## Basic example of BinderHub workflow
+
+This example is used to test the deployment of BinderHub with a project using a `requirement.txt` file.
+
+### BinderHub configuration
+
+The first step is to access the BinderHub page.
+
+If your Kubernetes cluster is deployed with **minikube**, the command `minikube service list` will allow you to recover the address to copy/paste in your browser. On the other hand, in the case of a bare-metal cluster, the command: `kubectl get svc -n binderhub` will allow you to recover the service port.
+As this service is of `NodePort` type, you can use the IP address of any node to reach the BinderHub home page.
+
+Once on the BinderHub page is opened, simply fill in the fields with the following inputs:
+
+- **GitHub repository name or url:** `https://github.com/binder-examples/requirements`
+- **branch:** `master`
+
+Finally, click on the `launch` button:
+
+![images/1_input.png](images/1_input.png)
+
+### Build the image
+
+From now on, everything is automated. BinderHub will create a container image based on what resides in the git project.
+
+![images/2_building.png](images/2_building.png)
+
+### Publish the image
+
+The image is now built, it will be saved in your Docker repository, e.g. ([hub.docker.com](https://hub.docker.com)). It will no longer be necessary to go back through the build stages to access this project. The duration of this step will be dependent on your internet connection (the image size is almost 600MB).
+
+![images/3_pushing.png](images/3_pushing.png)
+
+### View the project in JupyterHub
+
+The project will automatically be launched in JupyterHub once all the previous steps are completed.
+
+![images/4_jupyter.png](images/4_jupyter.png)
+
+### Launch the project
+
+You can now enjoy your work environment!
+
+![images/5_notebook.png](images/5_notebook.png)
+
+## References
+
+- [https://binderhub.readthedocs.io/en/latest/](https://binderhub.readthedocs.io/en/latest/)
\ No newline at end of file
diff --git a/examples/binderhub/config.yaml b/examples/binderhub/config.yaml
new file mode 100644
index 0000000..a92ebb9
--- /dev/null
+++ b/examples/binderhub/config.yaml
@@ -0,0 +1,29 @@
+config:
+ BinderHub:
+ use_registry: true
+ image_prefix: /-
+registry:
+ username:
+ password:
+
+
+dind:
+ enabled: true
+ daemonset:
+ image:
+ name: docker
+ tag: 18.09.2-dind
+
+jupyterhub:
+ hub:
+ services:
+ binder:
+ apiToken: 8675d9b1ff09ff2502886dfd4f0f36fd45c916372536aa09613cc9c5563d8d1d
+ proxy:
+ secretToken: 613e0ace7628f92bab45478873451f00e65977ca6a61d2f9255667b7bbd71d0e
+ db:
+ type: sqlite-memory
+ service:
+ type: NodePort
+ nodePorts:
+ http: 30902
diff --git a/examples/binderhub/deploy_binderhub.sh b/examples/binderhub/deploy_binderhub.sh
new file mode 100755
index 0000000..0c9281a
--- /dev/null
+++ b/examples/binderhub/deploy_binderhub.sh
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+# This script will deploy the various FADI services on a Kubernetes cluster using Helm and kubectl
+# See https://github.com/cetic/fadi/examples/binderhub/ for usage documentation
+# Usage: ./deploy_binderhub.sh [namespace]
+set -o errexit
+
+LOG_FILE="deploy.log"
+[ -e ${LOG_FILE} ] && rm ${LOG_FILE}
+exec > >(tee -a ${LOG_FILE} )
+exec 2> >(tee -a ${LOG_FILE} >&2)
+
+printf "\n\nFadi is deployed... Now helm will Install BinderHub in FADI...\n"
+# Install BinderHub in FADI
+kubectl get namespace binderhub 2> /dev/null || kubectl create namespace binderhub
+helm repo add jupyterhub https://jupyterhub.github.io/helm-chart/
+helm repo update
+helm upgrade --install binderhub jupyterhub/binderhub --version=0.2.0-n132.h1a8ce62 -f ./config.yaml --namespace binderhub
+
+sleep 5s
+# Get the node IP where JupyterHub is deployed
+nodeIP=$(kubectl get po -n binderhub -o wide |sed -n '/proxy/p' |awk '{ print $7 }')
+if [ $nodeIP = "minikube" ];then
+ nodeIP=$(minikube ip)
+fi
+
+# Upgrade the BinderHub release with hub_url
+printf "\n\n Found JupyterHub deployed at $nodeIP\n"
+helm upgrade binderhub jupyterhub/binderhub --version=0.2.0-n132.h1a8ce62 -f ./config.yaml --set config.BinderHub.hub_url=http://$nodeIP:30902 --namespace binderhub
+printf "\n\nInstallation successful, !\n"
diff --git a/examples/binderhub/images/1_input.png b/examples/binderhub/images/1_input.png
new file mode 100644
index 0000000..14c8d64
Binary files /dev/null and b/examples/binderhub/images/1_input.png differ
diff --git a/examples/binderhub/images/2_building.png b/examples/binderhub/images/2_building.png
new file mode 100644
index 0000000..7644331
Binary files /dev/null and b/examples/binderhub/images/2_building.png differ
diff --git a/examples/binderhub/images/3_pushing.png b/examples/binderhub/images/3_pushing.png
new file mode 100644
index 0000000..25174a2
Binary files /dev/null and b/examples/binderhub/images/3_pushing.png differ
diff --git a/examples/binderhub/images/4_jupyter.png b/examples/binderhub/images/4_jupyter.png
new file mode 100644
index 0000000..75dda75
Binary files /dev/null and b/examples/binderhub/images/4_jupyter.png differ
diff --git a/examples/binderhub/images/5_notebook.png b/examples/binderhub/images/5_notebook.png
new file mode 100644
index 0000000..03d58f4
Binary files /dev/null and b/examples/binderhub/images/5_notebook.png differ
diff --git a/examples/binderhub/images/binderhub.png b/examples/binderhub/images/binderhub.png
new file mode 100644
index 0000000..9df01b1
Binary files /dev/null and b/examples/binderhub/images/binderhub.png differ
diff --git a/examples/binderhub/values.yaml b/examples/binderhub/values.yaml
new file mode 100644
index 0000000..9cd8317
--- /dev/null
+++ b/examples/binderhub/values.yaml
@@ -0,0 +1,8 @@
+---
+# Default values for FADI are defined here: https://github.com/cetic/helm-fadi.
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+# Values you define here will overwrite default values from helm-fadi.
+
+jupyterhub:
+ enabled: false