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 @@
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