From 0379baac6c5f76287e76804e411af91432139379 Mon Sep 17 00:00:00 2001 From: jakedt Date: Thu, 13 Feb 2014 17:51:22 -0500 Subject: [PATCH] Add a time estimate for the tutorial, and switch the base image from ubuntu to busybox. --- static/tutorial/create-container.html | 2 +- static/tutorial/welcome.html | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/static/tutorial/create-container.html b/static/tutorial/create-container.html index a190d1018..dcfb0e6b2 100644 --- a/static/tutorial/create-container.html +++ b/static/tutorial/create-container.html @@ -3,7 +3,7 @@

First we'll create a container with a single new file based off of the ubuntu base image:

-sudo docker run ubuntu echo "fun" > newfile
+sudo docker run busybox echo "fun" > newfile
 

The container will immediately terminate (because its one command is echo), so we'll use docker ps -l to list it: diff --git a/static/tutorial/welcome.html b/static/tutorial/welcome.html index 76fdd7219..b7b75373d 100644 --- a/static/tutorial/welcome.html +++ b/static/tutorial/welcome.html @@ -8,3 +8,5 @@

  • Changing a repository's permissions
  • + +

    This tutorial should take about 15 minutes, but may take slightly longer depending on the speed of your internet connection

    \ No newline at end of file