docs: better docs, mv doxygen to sphinx
[vpp.git] / docs / usecases / containers / containerCreation.rst
similarity index 94%
rename from docs/usecases/containerCreation.rst
rename to docs/usecases/containers/containerCreation.rst
index 9b2cc12..bb11688 100644 (file)
@@ -29,7 +29,7 @@ Since we want to ping between two containers, we'll need to **add to this file**
 Look at the contents of *default.conf*, which should initially look like this:
 
 .. code-block:: console
-    
+
     # cat /etc/lxc/default.conf
     lxc.network.type = veth
     lxc.network.link = lxcbr0
@@ -40,7 +40,7 @@ As you can see, by default there is one veth interface.
 
 Now you will *append to this file* so that each container you create will have an interface for a Linux bridge and an unconsumed second interface.
 
-You can do this by piping *echo* output into *tee*, where each line is separated with a newline character *\\n* as shown below. Alternatively, you can manually add to this file with a text editor such as **vi**, but make sure you have root privileges. 
+You can do this by piping *echo* output into *tee*, where each line is separated with a newline character *\\n* as shown below. Alternatively, you can manually add to this file with a text editor such as **vi**, but make sure you have root privileges.
 
 .. code-block:: console
 
@@ -72,7 +72,7 @@ Creates an Ubuntu Xenial container named "cone".
 If successful, you'll get an output similar to this:
 
 .. code-block:: console
-    
+
     You just created an Ubuntu xenial amd64 (20180625_07:42) container.
 
     To enable SSH, run: apt install openssh-server
@@ -98,17 +98,17 @@ List your containers to verify they exist:
 Start the first container:
 
 .. code-block:: console
-    
+
     # lxc-start --name cone
 
 And verify its running:
 
 .. code-block:: console
-    
+
     # lxc-ls --fancy
-    NAME STATE   AUTOSTART GROUPS IPV4 IPV6 
-    cone RUNNING 0         -      -    -    
-    ctwo STOPPED 0         -      -    -  
+    NAME STATE   AUTOSTART GROUPS IPV4 IPV6
+    cone RUNNING 0         -      -    -
+    ctwo STOPPED 0         -      -    -
 
 
 .. note::