update release notes final
[msb/apigateway.git] / docs / platform / installation.rst
index 8991f66..da8af18 100644 (file)
@@ -13,7 +13,7 @@ This deployment approach is only for testing. MSB is consist of multiple microse
 
 ::
 
-  sudo docker run -d --net=host --name msb_consul consul 
+  sudo docker run -d --net=host --name msb_consul consul:0.9.3
 
 - Run the MSB dockers
 
@@ -49,7 +49,7 @@ For testing, we can register the services via curl.
 
 - Browse the registered services
 
-  Open MSB Web GUI portal in your browser: http://127.0.0.1/msb, you can see all the registered services. If the registered service support swagger, you can see the REST API documentation and test the registered services via the swagger UI integrated in MSB.
+  Open MSB Web GUI portal in your browser: ``http://127.0.0.1/msb`` , you can see all the registered services. If the registered service support swagger, you can see the REST API documentation and test the registered services via the swagger UI integrated in MSB.
 
 Run MSB using default docker network
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -60,7 +60,7 @@ In case that you don't want to use host network to set up the MSB dockers, you n
 
 ::
 
-    sudo docker run -d -p 8500:8500  --name msb_consul consul 
+    sudo docker run -d -p 8500:8500  --name msb_consul consul:0.9.3
     CONSUL_IP=`sudo docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' msb_consul`