diff --git a/README.md b/README.md
index 6645eb5..f07155e 100644
--- a/README.md
+++ b/README.md
@@ -12,12 +12,6 @@ The app demonstrates how decoupling content from its presentation enables greate
-You can see a hosted version of `The node.js example app` on Heroku.
-
-## What is Contentful?
-
-[Contentful](https://www.contentful.com) provides a content infrastructure for digital teams to power content in websites, apps, and devices. Unlike a CMS, Contentful was built to integrate with the modern software stack. It offers a central hub for structured content, powerful management and delivery APIs, and a customizable web app that enable developers and content creators to ship digital products faster.
-
## Requirements
* Node 8
@@ -86,13 +80,7 @@ Final Step:
Open [http://localhost:3000?editorial_features=enabled](http://localhost:3000?editorial_features=enabled) and take a look around. This URL flag adds an “Edit” button in the app on every editable piece of content which will take you back to Contentful web app where you can make changes. It also adds “Draft” and “Pending Changes” status indicators to all content if relevant.
-## Deploy to Heroku
-You can also deploy this app to Heroku:
-
-[](https://heroku.com/deploy)
-
-
-## Use Docker
+## Create the Docker Container
You can also run this app as a Docker container:
Step 1: Clone the repo
@@ -113,12 +101,24 @@ Step 3: Run the Docker container locally:
docker run -p 3000:3000 -d the-example-app.nodejs
```
-If you created your own Contentful space, you can use it by overriding the following environment variables:
+## Upload your example to Docker Hub
+Step 1: Log into the Docker Hub
```bash
-docker run -p 3000:3000 \
- -e CONTENTFUL_SPACE_ID= \
- -e CONTENTFUL_DELIVERY_TOKEN= \
- -e CONTENTFUL_PREVIEW_TOKEN= \
- -d the-example-app.nodejs
+docker login
```
+
+Step 2: Check the image id of the image you created
+```bash
+docker images
+```
+
+Step 3: Tag your image accordingly with your Docker hub user
+```bash
+docker tag bb38976d03cf yourhubusername/verse_gapminder:firsttry
+
+Step 4: Push your image to the Docker hub
+```bash
+docker push yourhubusername/verse_gapminder:firsttry
+```
+