Add a time estimate for the tutorial, and switch the base image from ubuntu to busybox.

This commit is contained in:
jakedt 2014-02-13 17:51:22 -05:00
parent 10aafcf10a
commit 0379baac6c
2 changed files with 3 additions and 1 deletions

View file

@ -3,7 +3,7 @@
<p>First we'll create a container with a single new file based off of the <code>ubuntu</code> base image:</p>
<pre class="command">
<code ng-show="tour.tourScope.showSudo">sudo </code>docker run ubuntu echo "fun" > newfile
<code ng-show="tour.tourScope.showSudo">sudo </code>docker run busybox echo "fun" > newfile
</pre>
<p>The container will immediately terminate (because its one command is <code>echo</code>), so we'll use <code>docker ps -l</code> to list it:

View file

@ -8,3 +8,5 @@
<li>Changing a repository's permissions</li>
</ul>
</p>
<p>This tutorial should take about <b>15 minutes</b>, but may take slightly longer depending on the speed of your internet connection</p>