You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by di...@apache.org on 2016/03/23 16:13:21 UTC

svn commit: r1736335 - /incubator/singa/site/trunk/content/markdown/docs/docker.md

Author: dinhtta
Date: Wed Mar 23 15:13:20 2016
New Revision: 1736335

URL: http://svn.apache.org/viewvc?rev=1736335&view=rev
Log:
Update Docker and Mesos documentation

Modified:
    incubator/singa/site/trunk/content/markdown/docs/docker.md

Modified: incubator/singa/site/trunk/content/markdown/docs/docker.md
URL: http://svn.apache.org/viewvc/incubator/singa/site/trunk/content/markdown/docs/docker.md?rev=1736335&r1=1736334&r2=1736335&view=diff
==============================================================================
--- incubator/singa/site/trunk/content/markdown/docs/docker.md (original)
+++ incubator/singa/site/trunk/content/markdown/docs/docker.md Wed Mar 23 15:13:20 2016
@@ -155,17 +155,19 @@ name resolution inside containers now **
 1.8 and earlier. Here we recommend two ways to make pseudo-distributed and distributed SINGA containers work as before
 
 1. Downgrade to docker version 1.8 and earlier
+
       ````
       $ sudo apt-get install docker-engine=1.8.3-0~trusty
       ````
+
 2. Manually log in to each running container, by `sudo exec -it <name> /bin/bash`, and edit the `/etc/hosts` with the
 assigned IP addresses of all other running containers. 
 
-      ````
-      node0 <ip0>
-      node1 <ip1>
-      ...
-      ````
+       ````
+       node0 <ip0>
+       node1 <ip1>
+       ...
+       ````
 
 ---