diff --git a/docs/sources/installation/amazon.rst b/docs/sources/installation/amazon.rst
index b9344042fa..c7979553c9 100644
--- a/docs/sources/installation/amazon.rst
+++ b/docs/sources/installation/amazon.rst
@@ -1,24 +1,77 @@
:title: Installation on Amazon EC2
-:description: Docker installation on Amazon EC2 with a single vagrant command. Vagrant 1.1 or higher is required.
+:description: Docker installation on Amazon EC2
:keywords: amazon ec2, virtualization, cloud, docker, documentation, installation
-Using Vagrant (Amazon EC2)
-==========================
-
-This page explains how to setup and run an Amazon EC2 instance from
-your local machine. **Vagrant is not necessary to run Docker on
-EC2.** You can follow the :ref:`ubuntu_linux` instructions installing
-Docker on any EC2 instance running Ubuntu.
-
-Installation
-------------
+Amazon EC2
+==========
.. include:: install_header.inc
+There are several ways to install Docker on AWS EC2:
+
+* :ref:`amazonquickstart` or
+* :ref:`amazonstandard` or
+* :ref:`amazonvagrant`
+
+**You'll need an** `AWS account `_ **first, of course.**
+
+.. _amazonquickstart:
+
+Amazon QuickStart
+-----------------
+
+1. **Choose an image:**
+
+ * Open http://cloud-images.ubuntu.com/locator/ec2/
+ * Enter ``amd64 precise`` in the search field (it will search as you
+ type)
+ * Pick an image by clicking on the image name. *An EBS-enabled
+ image will let you t1.micro instance.* Clicking on the image name
+ will take you to your AWS Console.
+
+2. **Tell CloudInit to install Docker:**
+
+ * Enter ``#include https://get.docker.io`` into the instance *User
+ Data*. `CloudInit `_
+ is part of the Ubuntu image you chose and it bootstraps from this
+ *User Data*.
+
+3. After a few more standard choices where defaults are probably ok, your
+ AWS Ubuntu instance with Docker should be running!
+
+**If this is your first AWS instance, you may need to set up your
+Security Group to allow SSH.** By default all incoming ports to your
+new instance will be blocked by the AWS Security Group, so you might
+just get timeouts when you try to connect.
+
+Installing with ``get.docker.io`` (as above) will create a service
+named ``dockerd``. You may want to set up a :ref:`docker group
+` and add the *ubuntu* user to it so that you don't have
+to use ``sudo`` for every Docker command.
+
+Once you've got Docker installed, you're ready to try it out -- head
+on over to the :doc:`../use/basics` or :doc:`../examples/index` section.
+
+.. _amazonstandard:
+
+Standard Ubuntu Installation
+----------------------------
+
+If you want a more hands-on installation, then you can follow the
+:ref:`ubuntu_linux` instructions installing Docker on any EC2 instance
+running Ubuntu. Just follow Step 1 from :ref:`amazonquickstart` to
+pick an image (or use one of your own) and skip the step with the
+*User Data*. Then continue with the :ref:`ubuntu_linux` instructions.
+
+.. _amazonvagrant:
+
+Use Vagrant
+-----------
+
.. include:: install_unofficial.inc
-Docker can now be installed on Amazon EC2 with a single vagrant
-command. Vagrant 1.1 or higher is required.
+And finally, if you prefer to work through Vagrant, you can install
+Docker that way too. Vagrant 1.1 or higher is required.
1. Install vagrant from http://www.vagrantup.com/ (or use your package manager)
2. Install the vagrant aws plugin
@@ -37,16 +90,17 @@ command. Vagrant 1.1 or higher is required.
4. Check your AWS environment.
- Create a keypair specifically for EC2, give it a name and save it to your disk. *I usually store these in my ~/.ssh/ folder*.
-
- Check that your default security group has an inbound rule to accept SSH (port 22) connections.
-
+ Create a keypair specifically for EC2, give it a name and save it
+ to your disk. *I usually store these in my ~/.ssh/ folder*.
+ Check that your default security group has an inbound rule to
+ accept SSH (port 22) connections.
5. Inform Vagrant of your settings
- Vagrant will read your access credentials from your environment, so we need to set them there first. Make sure
- you have everything on amazon aws setup so you can (manually) deploy a new image to EC2.
+ Vagrant will read your access credentials from your environment, so
+ we need to set them there first. Make sure you have everything on
+ amazon aws setup so you can (manually) deploy a new image to EC2.
::
@@ -60,7 +114,8 @@ command. Vagrant 1.1 or higher is required.
* ``AWS_ACCESS_KEY_ID`` - The API key used to make requests to AWS
* ``AWS_SECRET_ACCESS_KEY`` - The secret key to make AWS API requests
* ``AWS_KEYPAIR_NAME`` - The name of the keypair used for this EC2 instance
- * ``AWS_SSH_PRIVKEY`` - The path to the private key for the named keypair, for example ``~/.ssh/docker.pem``
+ * ``AWS_SSH_PRIVKEY`` - The path to the private key for the named
+ keypair, for example ``~/.ssh/docker.pem``
You can check if they are set correctly by doing something like
@@ -75,10 +130,12 @@ command. Vagrant 1.1 or higher is required.
vagrant up --provider=aws
- If it stalls indefinitely on ``[default] Waiting for SSH to become available...``, Double check your default security
- zone on AWS includes rights to SSH (port 22) to your container.
+ If it stalls indefinitely on ``[default] Waiting for SSH to become
+ available...``, Double check your default security zone on AWS
+ includes rights to SSH (port 22) to your container.
- If you have an advanced AWS setup, you might want to have a look at https://github.com/mitchellh/vagrant-aws
+ If you have an advanced AWS setup, you might want to have a look at
+ https://github.com/mitchellh/vagrant-aws
7. Connect to your machine
diff --git a/docs/sources/terms/images/docker-filesystems-busyboxrw.png b/docs/sources/terms/images/docker-filesystems-busyboxrw.png
index 24277dc1f4..ad41c940e4 100644
Binary files a/docs/sources/terms/images/docker-filesystems-busyboxrw.png and b/docs/sources/terms/images/docker-filesystems-busyboxrw.png differ
diff --git a/docs/sources/terms/images/docker-filesystems-debian.png b/docs/sources/terms/images/docker-filesystems-debian.png
index 8411733a5f..823a215d3e 100644
Binary files a/docs/sources/terms/images/docker-filesystems-debian.png and b/docs/sources/terms/images/docker-filesystems-debian.png differ
diff --git a/docs/sources/terms/images/docker-filesystems-debianrw.png b/docs/sources/terms/images/docker-filesystems-debianrw.png
index b7b16c1cc2..97c69a9944 100644
Binary files a/docs/sources/terms/images/docker-filesystems-debianrw.png and b/docs/sources/terms/images/docker-filesystems-debianrw.png differ
diff --git a/docs/sources/terms/images/docker-filesystems-generic.png b/docs/sources/terms/images/docker-filesystems-generic.png
index a6710680a9..fb734b75c6 100644
Binary files a/docs/sources/terms/images/docker-filesystems-generic.png and b/docs/sources/terms/images/docker-filesystems-generic.png differ
diff --git a/docs/sources/terms/images/docker-filesystems-multilayer.png b/docs/sources/terms/images/docker-filesystems-multilayer.png
index 025a9d47bd..0b3ae19c2c 100644
Binary files a/docs/sources/terms/images/docker-filesystems-multilayer.png and b/docs/sources/terms/images/docker-filesystems-multilayer.png differ
diff --git a/docs/sources/terms/images/docker-filesystems-multiroot.png b/docs/sources/terms/images/docker-filesystems-multiroot.png
index 42a710cc82..5e864273f3 100644
Binary files a/docs/sources/terms/images/docker-filesystems-multiroot.png and b/docs/sources/terms/images/docker-filesystems-multiroot.png differ
diff --git a/docs/sources/terms/images/docker-filesystems.svg b/docs/sources/terms/images/docker-filesystems.svg
index 13d61dc1eb..d41aff2522 100644
--- a/docs/sources/terms/images/docker-filesystems.svg
+++ b/docs/sources/terms/images/docker-filesystems.svg
@@ -26,16 +26,16 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.82666667"
- inkscape:cx="382.45968"
- inkscape:cy="348.3871"
+ inkscape:cx="236.08871"
+ inkscape:cy="300"
inkscape:document-units="px"
- inkscape:current-layer="layer4"
+ inkscape:current-layer="layer2"
showgrid="false"
width="800px"
inkscape:window-width="1327"
inkscape:window-height="714"
- inkscape:window-x="616"
- inkscape:window-y="1483"
+ inkscape:window-x="686"
+ inkscape:window-y="219"
inkscape:window-maximized="0"
showguides="false"
inkscape:guide-bbox="true"
@@ -48,98 +48,98 @@
inkscape:snap-bbox="false"
inkscape:snap-grids="false">
+ orientation="0,1" />
+ orientation="1,0" />
+ orientation="1,0" />
+ orientation="1,0" />
+ orientation="1,0" />
+ orientation="1,0" />
+ orientation="0,1" />
+
+
-
-
+ id="guide5235" />
+ id="guide5237" />
+ id="guide5239" />
+
-
-
+ inkscape:vp_z="1199.1838 : 590.41154 : 1"
+ inkscape:persp3d-origin="406.04839 : 290.19023 : 1"
+ id="perspective4014" />
+ id="perspective4012" />
+
+ inkscape:vp_z="1200.5884 : 584.76404 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="-407.35594 : 591.07573 : 1"
+ sodipodi:type="inkscape:persp3d" />
@@ -149,1392 +149,1393 @@
image/svg+xml
-
+
+ id="layer8"
+ inkscape:groupmode="layer"
+ sodipodi:insensitive="true">
+ height="600"
+ width="800"
+ id="rect8704"
+ style="fill:#f0f0f0;fill-opacity:0.51111115;stroke:none" />
+ id="layer2"
+ inkscape:groupmode="layer">
+ inkscape:corner0="0.49469727 : -0.063230334 : 0 : 1"
+ inkscape:perspectiveID="#perspective3054"
+ id="g3999"
+ style="fill:#aad3d3;fill-opacity:1;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ sodipodi:type="inkscape:box3d"
+ inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ style="fill:#afafde;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4009"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#353564;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4001"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4011"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#bbdbdb;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4003"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#91c6c6;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4007"
+ sodipodi:type="inkscape:box3dside" />
-
-
-
-
-
-
-
-
-
+ style="fill:#a9d2d2;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4005"
+ sodipodi:type="inkscape:box3dside" />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ transform="matrix(0.75405944,0,0,0.75405944,111.78234,89.235813)"
+ inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ inkscape:label="ExtraImages"
+ style="display:inline">
+ id="g3195"
+ inkscape:perspectiveID="#perspective5786"
+ inkscape:corner0="0.4922944 : 0.12449455 : 0 : 1"
+ inkscape:corner7="0.22235256 : 0.05733945 : 0.532878 : 1">
-
-
-
-
-
-
-
-
+ d="M 133.59629,232.51954 253.10212,281.92761 540.69439,200.92065 414.29968,175.31088 z" />
+ d="m 133.59629,187.5183 0,45.00124 280.70339,-57.20866 0,-33.16019 z" />
+ d="m 414.29968,142.15069 126.39471,20.50998 0,38.25998 -126.39471,-25.60977 z" />
+ d="M 133.59629,187.5183 253.10212,226.98839 540.69439,162.66067 414.29968,142.15069 z" />
+ d="m 253.10212,226.98839 0,54.93922 287.59227,-81.00696 0,-38.25998 z" />
+
+
+
+
+
+
+
+
+ style="fill:#00ade5;fill-opacity:1"
+ inkscape:box3dsidetype="3"
+ d="m 133.59629,108.48046 119.50583,22.01553 0,96.4924 -119.50583,-39.47009 z" />
+ transform="matrix(0.80256968,0,0,0.80256968,38.124381,46.818937)">
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ id="text4949">
+ id="path4956" />
+ id="path4958" />
+ id="path4960" />
+ id="path4962" />
+ id="path4964" />
+ id="path4966" />
+ id="path4968" />
+ id="path4970" />
+ id="path4972" />
+ transform="matrix(0.87020295,0,0,0.87020295,36.583926,33.755817)">
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ id="text6335">
+ id="path6342" />
+ id="path6344" />
+ id="path6346" />
+ id="path6348" />
+ id="path6350" />
+ x="82.258064"
+ y="465.7258" />
-
-
+
+
+ transform="matrix(0.64605126,0,0,0.64605126,58.138831,104.45649)"
+ inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ id="text6476"
+ style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New Bold"
+ transform="matrix(0.70185341,0,0,0.70185341,103.7893,28.378586)">
+ id="path6483"
+ d="m 284.7875,71.172554 c 0.44477,-0.832231 0.92421,-1.465513 1.4382,-1.900127 0.53667,-0.4355 1.1077,-0.672696 1.71297,-0.711885 1.04557,-0.06757 1.89194,0.353644 2.5402,1.262581 0.67037,0.906179 1.0052,2.492869 1.00523,4.761013 0,0 0,8.000002 0,8.000002 -3e-5,2.26822 -0.33486,3.921026 -1.00523,4.959505 -0.64826,1.007365 -1.49463,1.556992 -2.5402,1.647991 -0.95479,0.08315 -1.72468,-0.204346 -2.30875,-0.863225 -0.58488,-0.65966 -1.01814,-1.950635 -1.29935,-3.87322 -0.16424,-1.284181 -0.49265,-2.262294 -0.98575,-2.934566 -0.96432,-1.3174 -2.32007,-2.329246 -4.07067,-3.035472 -1.73349,-0.710549 -3.48536,-1.002067 -5.25579,-0.872195 -2.2105,0.162261 -4.25002,0.939439 -6.11624,2.335152 -1.87367,1.401341 -3.53455,3.579947 -4.98033,6.538425 -1.45023,2.967618 -2.17702,6.418844 -2.177,10.346848 0,0 0,6.319689 0,6.319689 -2e-5,4.68833 1.31723,8.4578 3.94077,11.29662 2.63334,2.82038 6.25448,3.9553 10.84051,3.42052 2.71589,-0.31667 5.00256,-1.0641 6.86624,-2.24004 1.08169,-0.681 2.23119,-1.9088 3.44797,-3.68114 0.74716,-1.06937 1.33005,-1.76505 1.74931,-2.0881 0.41882,-0.35351 0.89537,-0.55926 1.4295,-0.61747 0.95051,-0.10353 1.78351,0.28116 2.49963,1.15291 0.71496,0.87043 1.07203,1.94803 1.07206,3.23382 -3e-5,1.28582 -0.48388,2.72011 -1.45306,4.30537 -1.41137,2.31718 -3.23399,4.2301 -5.47274,5.73891 -3.02557,2.04682 -6.39086,3.30935 -10.10307,3.78033 -4.36859,0.55426 -8.34027,-0.12163 -11.90441,-2.04242 -2.90041,-1.54355 -5.38471,-4.24401 -7.44624,-8.1068 -2.0705,-3.91143 -3.10914,-8.31641 -3.10914,-13.20215 0,0 0,-6.658033 0,-6.658033 0,-5.109235 0.92611,-9.943355 2.77299,-14.489167 1.86452,-4.561782 4.42566,-8.139695 7.6721,-10.733799 3.2243,-2.576297 6.62007,-3.970988 10.18341,-4.195938 2.1298,-0.134375 4.10732,0.06744 5.93444,0.603403 1.8435,0.501452 3.5505,1.349515 5.12244,2.542658"
+ inkscape:connector-curvature="0" />
+ id="path6485"
+ d="m 332.72241,99.695904 c -3e-5,3.454376 -0.69544,6.883666 -2.08953,10.295926 -1.37739,3.39127 -3.45151,6.22973 -6.23223,8.51821 -2.77679,2.27061 -5.7014,3.60556 -8.77662,3.99619 -3.07455,0.39054 -6.03717,-0.19462 -8.88547,-1.76496 -2.86641,-1.61052 -5.06204,-4.01078 -6.577,-7.20109 -1.52005,-3.20093 -2.28198,-6.64692 -2.28197,-10.32991 -1e-5,-3.743818 0.77328,-7.485228 2.31594,-11.214731 1.53742,-3.747128 3.73278,-6.765923 6.57651,-9.055026 2.84809,-2.276467 5.79948,-3.529834 8.85199,-3.769629 3.05348,-0.23978 5.96744,0.568964 8.74442,2.416299 2.78093,1.804629 4.86582,4.376812 6.26443,7.717058 1.39409,3.300382 2.0895,6.761654 2.08953,10.391663 m -6.52296,0.719196 c -3e-5,-2.919695 -0.75935,-5.529693 -2.28187,-7.835916 -2.08863,-3.122229 -4.84898,-4.536825 -8.29355,-4.230938 -3.05251,0.271115 -5.6159,1.835234 -7.68164,4.700785 -2.07528,2.878816 -3.11648,6.090208 -3.11648,9.624269 0,2.89979 1.05239,5.50275 3.14988,7.80089 2.08774,2.25751 4.63979,3.20582 7.64824,2.85456 3.01001,-0.35144 5.52454,-1.87594 7.55183,-4.56609 2.01799,-2.70736 3.02356,-5.4868 3.02359,-8.34756"
+ inkscape:connector-curvature="0" />
+ id="path6487"
+ d="m 347.8693,77.803424 c 0,0 0,2.977535 0,2.977535 1.13725,-1.473815 2.38274,-2.608435 3.73555,-3.404894 1.3686,-0.795449 2.84302,-1.254431 4.42214,-1.378502 3.6158,-0.283947 6.45504,1.090917 8.53297,4.111636 1.63938,2.396082 2.4567,5.64404 2.45673,9.750881 0,0 0,16.07587 0,16.07587 1.26176,-0.14523 2.19111,0.1546 2.79025,0.89839 0.59824,0.71473 0.89705,1.71585 0.89708,3.00413 -3e-5,1.26026 -0.30848,2.33443 -0.92604,3.22348 -0.5992,0.85987 -1.61585,1.38012 -3.05301,1.5603 0,0 -5.43347,0.68121 -5.43347,0.68121 -1.46081,0.18314 -2.51013,-0.083 -3.14492,-0.79957 -0.6159,-0.7486 -0.92419,-1.77778 -0.92416,-3.08678 -3e-5,-1.28051 0.30826,-2.35539 0.92416,-3.22368 0.61496,-0.89541 1.56546,-1.41668 2.84922,-1.56445 0,0 0,-16.445742 0,-16.445742 -3e-5,-1.898092 -0.35513,-3.253658 -1.06623,-4.067719 -0.9302,-1.051374 -2.32932,-1.495065 -4.20195,-1.32878 -1.41994,0.126126 -2.6738,0.637836 -3.76007,1.536474 -1.06886,0.870461 -2.43401,2.660203 -4.09825,5.375433 0,0 0,16.441254 0,16.441254 1.60347,-0.18456 2.63545,-0.0881 3.10006,0.28814 0.98811,0.74447 1.48131,1.94593 1.48133,3.60564 -2e-5,1.28769 -0.32204,2.38607 -0.96682,3.29618 -0.62558,0.88027 -1.68708,1.41472 -3.18774,1.60286 0,0 -7.15906,0.89754 -7.15906,0.89754 -1.5311,0.19196 -2.63101,-0.0773 -3.29645,-0.80905 -0.64563,-0.7646 -0.96879,-1.81744 -0.96879,-3.15769 0,-1.63159 0.50029,-2.95748 1.49915,-3.97589 0.49856,-0.49379 1.5665,-0.83474 3.19961,-1.02272 0,0 0,-21.647257 0,-21.647257 -1.34325,0.121155 -2.33786,-0.210491 -2.98141,-0.996089 -0.64452,-0.786693 -0.96715,-1.835481 -0.96713,-3.145494 -2e-5,-1.309966 0.32261,-2.399054 0.96713,-3.26632 0.66429,-0.896616 1.76232,-1.405653 3.2908,-1.527814 0,0 5.98932,-0.478512 5.98932,-0.478512"
+ inkscape:connector-curvature="0" />
+ id="path6489"
+ d="m 388.14058,83.018823 c 0,0 0,16.90685 0,16.90685 -10e-6,1.809987 0.24937,2.974387 0.74771,3.492757 0.77393,0.81424 2.15235,1.10494 4.12918,0.87413 2.85672,-0.33354 5.4774,-1.54665 7.86642,-3.63181 0.91233,-0.804602 1.62645,-1.235237 2.14344,-1.293212 0.71193,-0.07979 1.32498,0.254725 1.8396,1.002732 0.53162,0.74505 0.79719,1.69422 0.79722,2.84828 -3e-5,1.07356 -0.28331,2.03341 -0.85042,2.88048 -0.87002,1.36914 -2.59781,2.75291 -5.19443,4.15584 -2.59535,1.38257 -4.79813,2.19134 -6.60183,2.42046 -3.50256,0.44491 -6.1539,-0.34442 -7.93718,-2.37749 -1.77237,-2.07172 -2.66142,-4.76781 -2.6614,-8.08161 0,0 0,-18.681529 0,-18.681529 0,0 -2.08504,0.187991 -2.08504,0.187991 -1.39587,0.125896 -2.39851,-0.172406 -3.00504,-0.896017 -0.58843,-0.754073 -0.88296,-1.771254 -0.88296,-3.050741 0,-1.251632 0.29453,-2.29109 0.88296,-3.117521 0.60653,-0.854462 1.60917,-1.337151 3.00504,-1.448715 0,0 2.08504,-0.166582 2.08504,-0.166582 0,0 0,-7.663148 0,-7.663148 -2e-5,-2.043459 0.26221,-3.510671 0.78619,-4.400745 0.54197,-0.917653 1.24175,-1.403398 2.09855,-1.458075 0.83641,-0.05329 1.5136,0.343008 2.03236,1.18804 0.53656,0.815375 0.80458,2.237345 0.80459,4.266667 0,0 0,7.610131 0,7.610131 0,0 10.37233,-0.828688 10.37233,-0.828688 1.33087,-0.106287 2.27244,0.210007 2.82742,0.94786 0.57201,0.708497 0.85774,1.682302 0.85777,2.92219 -3e-5,1.212982 -0.28576,2.235382 -0.85777,3.068081 -0.55498,0.805342 -1.49655,1.268255 -2.82742,1.388207 0,0 -10.37233,0.935187 -10.37233,0.935187"
+ inkscape:connector-curvature="0" />
+ id="path6491"
+ d="m 426.78356,107.09258 c 0,0 0,-1.88162 0,-1.88162 -1.29426,1.23241 -2.72793,2.21052 -4.30255,2.93345 -1.58097,0.75218 -3.02296,1.21187 -4.32438,1.37727 -2.84033,0.36091 -5.16206,-0.50088 -6.95591,-2.59442 -1.80197,-2.1297 -2.706,-4.61561 -2.706,-7.450523 0,-3.449995 1.14945,-6.766286 3.43846,-9.93519 2.29325,-3.179053 5.43363,-4.95254 9.40099,-5.331327 1.57921,-0.150749 3.39679,-0.06225 5.44939,0.26374 0,0 0,-1.920817 0,-1.920817 -1e-5,-1.202127 -0.33577,-2.151503 -1.00813,-2.849026 -0.6567,-0.700183 -1.92263,-0.967515 -3.80372,-0.800477 -1.5489,0.137578 -3.56646,0.792207 -6.05983,1.968997 -0.9326,0.429384 -1.65947,0.668141 -2.17946,0.715577 -0.71179,0.06498 -1.32039,-0.265367 -1.82538,-0.991816 -0.48819,-0.755544 -0.7325,-1.746725 -0.7325,-2.972869 0,-0.693 0.0873,-1.300079 0.26176,-1.821128 0.17441,-0.520739 0.41846,-0.940499 0.73202,-1.259265 0.31331,-0.345082 0.96525,-0.770689 1.95416,-1.276103 1.31474,-0.663016 2.65095,-1.206818 4.00842,-1.631975 1.3528,-0.449995 2.5732,-0.717309 3.66242,-0.802899 3.23272,-0.253864 5.71949,0.634365 7.47424,2.656278 1.76343,1.985514 2.64219,4.831201 2.64221,8.543807 0,0 0,16.434219 0,16.434219 0,0 0.8685,-0.09997 0.8685,-0.09997 1.22086,-0.140526 2.0847,0.135063 2.5939,0.825754 0.52488,0.662055 0.78706,1.586613 0.78708,2.774353 -2e-5,1.16192 -0.2622,2.14952 -0.78708,2.96365 -0.5092,0.78731 -1.37304,1.2577 -2.5939,1.41076 0,0 -5.99471,0.75157 -5.99471,0.75157 m 0,-14.386546 c -2.06948,-0.40743 -3.98883,-0.518817 -5.75577,-0.331915 -2.13431,0.225806 -3.97905,1.227956 -5.53012,3.010736 -0.96819,1.140564 -1.45318,2.243056 -1.45316,3.305406 -2e-5,0.770223 0.23388,1.367569 0.70129,1.791659 0.86409,0.77522 2.04484,1.07465 3.53944,0.90007 1.26684,-0.14798 2.69144,-0.69613 4.27211,-1.641975 1.59121,-0.943971 2.9993,-2.138927 4.22621,-3.584347 0,0 0,-3.449634 0,-3.449634"
+ inkscape:connector-curvature="0" />
+ id="path6493"
+ d="m 453.9243,54.610091 c 0,0 0,8.211498 0,8.211498 0,0 -5.76678,0.411052 -5.76678,0.411052 0,0 0,-8.274175 0,-8.274175 0,0 5.76678,-0.348375 5.76678,-0.348375 m 0.65618,14.667738 c 0,0 0,26.579133 0,26.579133 0,0 5.71636,-0.65798 5.71636,-0.65798 1.13594,-0.130751 1.93979,0.138491 2.41364,0.806796 0.48847,0.640773 0.73247,1.533755 0.73249,2.679593 -2e-5,1.120916 -0.24402,2.072579 -0.73249,2.855759 -0.47385,0.75733 -1.2777,1.2074 -2.41364,1.34982 0,0 -16.42615,2.05938 -16.42615,2.05938 -1.18999,0.14919 -2.04454,-0.10251 -2.56141,-0.7561 -0.5014,-0.68215 -0.75234,-1.61404 -0.75234,-2.79504 0,-1.1553 0.25094,-2.121869 0.75234,-2.898952 0.51687,-0.803545 1.37142,-1.273558 2.56141,-1.41053 0,0 5.87909,-0.67671 5.87909,-0.67671 0,0 0,-18.948966 0,-18.948966 0,0 -3.93328,0.354631 -3.93328,0.354631 -1.16791,0.105341 -2.01005,-0.17664 -2.52426,-0.846857 -0.51491,-0.696656 -0.77263,-1.634334 -0.77262,-2.812333 -10e-6,-1.152351 0.24966,-2.107591 0.7485,-2.864998 0.51424,-0.783198 1.36445,-1.221827 2.54838,-1.316456 0,0 8.76398,-0.70019 8.76398,-0.70019"
+ inkscape:connector-curvature="0" />
+ id="path6495"
+ d="m 475.50208,67.606316 c 0,0 0,2.536447 0,2.536447 0.82543,-1.243767 1.72979,-2.197864 2.71251,-2.863045 0.99466,-0.664475 2.06675,-1.041275 3.21558,-1.131544 2.63288,-0.206754 4.70261,0.995273 6.21864,3.596757 1.19685,2.064769 1.79379,4.849578 1.79381,8.359593 0,0 0,13.739648 0,13.739648 0.92188,-0.106113 1.60115,0.163521 2.03918,0.808107 0.43746,0.619866 0.656,1.480388 0.65602,2.582152 -2e-5,1.077801 -0.22561,1.991748 -0.6772,2.74255 -0.43807,0.725982 -1.18113,1.154978 -2.23108,1.286613 0,0 -3.96487,0.497085 -3.96487,0.497085 -1.0647,0.133484 -1.82917,-0.110058 -2.2915,-0.731511 -0.44847,-0.648312 -0.67292,-1.531197 -0.6729,-2.648076 -2e-5,-1.092577 0.22443,-2.005162 0.6729,-2.737073 0.44789,-0.755228 1.14034,-1.186443 2.07594,-1.294135 0,0 0,-14.041184 0,-14.041184 -2e-5,-1.62057 -0.25886,-2.78201 -0.77709,-3.485072 -0.67772,-0.907895 -1.69667,-1.302142 -3.05969,-1.181111 -1.03295,0.09175 -1.94465,0.514073 -2.73418,1.267944 -0.7766,0.729774 -1.76804,2.239168 -2.97607,4.532658 0,0 0,14.005672 0,14.005672 1.16391,-0.133971 1.91333,-0.03683 2.25082,0.290636 0.71792,0.649047 1.07636,1.68058 1.07637,3.095536 -1e-5,1.097796 -0.23405,2.029224 -0.70258,2.795022 -0.45448,0.740495 -1.22543,1.179235 -2.31485,1.315815 0,0 -5.18947,0.65062 -5.18947,0.65062 -1.10822,0.13893 -1.90397,-0.10756 -2.38525,-0.74043 -0.46685,-0.66032 -0.70049,-1.56056 -0.70049,-2.700113 0,-1.387265 0.36171,-2.50717 1.08406,-3.358431 0.36064,-0.412646 1.13337,-0.687031 2.31557,-0.823108 0,0 0,-18.420515 0,-18.420515 -0.97243,0.08771 -1.69217,-0.205769 -2.15774,-0.881257 -0.46616,-0.67628 -0.69947,-1.571732 -0.69946,-2.685719 -1e-5,-1.113947 0.2333,-2.03669 0.69946,-2.767556 0.48058,-0.755792 1.27518,-1.177643 2.38178,-1.266092 0,0 4.34178,-0.346883 4.34178,-0.346883"
+ inkscape:connector-curvature="0" />
+ id="path6497"
+ d="m 516.2673,83.722347 c 0,0 -17.01231,1.834644 -17.01231,1.834644 0.44185,1.848273 1.22067,3.289103 2.33424,4.321792 1.12374,1.027866 2.63243,1.429872 4.52114,1.209352 1.54145,-0.179976 3.57954,-0.990387 6.10559,-2.424021 1.03717,-0.583484 1.75341,-0.897083 2.15071,-0.942116 0.54219,-0.06141 0.99779,0.223013 1.36714,0.85272 0.3689,0.629061 0.55322,1.452524 0.55324,2.47089 -2e-5,0.925797 -0.19751,1.736603 -0.5928,2.432995 -0.5278,0.922061 -1.81764,1.905265 -3.87803,2.953251 -2.07267,1.030855 -4.07672,1.670911 -6.01089,1.916599 -3.35242,0.425841 -6.0602,-0.877156 -8.10814,-3.925214 -2.04585,-3.067292 -3.07319,-7.030199 -3.07319,-11.875495 0,-5.155547 1.11107,-9.444274 3.3229,-12.850313 2.21193,-3.409715 4.73871,-5.21866 7.57349,-5.441345 1.69266,-0.132909 3.23602,0.260598 4.63201,1.177293 1.40373,0.912009 2.44288,1.931821 3.12066,3.060528 0.9546,1.636213 1.7415,3.688648 2.36186,6.157338 0.42169,1.719696 0.63236,3.736031 0.63238,6.05059 0,0 0,3.020512 0,3.020512 m -4.51107,-6.677135 c -0.62731,-1.990684 -1.44983,-3.441932 -2.46895,-4.353009 -1.02212,-0.937128 -2.24313,-1.343777 -3.6651,-1.217511 -1.41414,0.125607 -2.6425,0.753666 -3.68311,1.886295 -1.04369,1.112332 -1.89741,2.742795 -2.55975,4.891895 0,0 12.37691,-1.20767 12.37691,-1.20767"
+ inkscape:connector-curvature="0" />
+
+ id="text10906"
+ style="font-size:40px;font-style:italic;font-variant:normal;font-weight:500;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Futura;-inkscape-font-specification:Futura Medium Italic"
+ transform="matrix(0.86745158,0,0,0.86745158,24.966041,10.718461)">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ inkscape:label="Base Image"
+ style="display:none">
+ id="text7027">
+ id="path7034" />
+ id="path7036" />
+ id="path7038" />
+ id="path7040" />
+ id="path7042" />
+ id="path7044" />
+ id="path7046" />
+ id="path7048" />
+ id="path7050" />
+ inkscape:label="Image (name)"
+ style="display:none">
+ id="text14133"
+ style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Courier New;-inkscape-font-specification:Courier New">
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ id="layer4"
+ inkscape:groupmode="layer">
+ inkscape:perspectiveID="#perspective3054"
+ id="g4208"
+ style="fill:#dcdc00;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
+ sodipodi:type="inkscape:box3d"
+ transform="translate(0,-452.36218)"
+ inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ style="fill:#afafde;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4218"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#353564;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4210"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4220"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#ffa64a;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4212"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#dc7000;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4216"
+ sodipodi:type="inkscape:box3dside" />
+ style="fill:#ff8100;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path4214"
+ sodipodi:type="inkscape:box3dside" />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ transform="matrix(0.71809444,0,0,0.71809444,82.080142,116.02377)"
+ inkscape:export-filename="/Users/arothfusz/src/metalivedev/docker/docs/sources/terms/images/docker-filesystems-multiroot.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />
+ inkscape:connector-curvature="0" />