diff --git a/docs/features/servicediscovery.rst b/docs/features/servicediscovery.rst
index 3a88fb47..c24a2e39 100644
--- a/docs/features/servicediscovery.rst
+++ b/docs/features/servicediscovery.rst
@@ -117,7 +117,18 @@ This feature was requested as part of `Issue 262 `_ which is something
to do with `Pivotal `_! Anyway enough of the background.
-In order to get this working add the following to ocelot.json..
+The first thing you need to do is install the NuGet package that provides Eureka support in Ocelot.
+
+``Install-Package Ocelot.Provider.Eureka``
+
+Then add the following to your ConfigureServices method.
+
+.. code-block:: csharp
+
+ s.AddOcelot()
+ .AddEureka();
+
+Then in order to get this working add the following to ocelot.json..
.. code-block:: json