Fix missing leading slash for /bin/bash executable

Upstream-commit: e9f1f760f220cbd0f3df68b09ab8c10b27dfa0e9
Component: engine
This commit is contained in:
Michael Prokop
2014-06-14 15:54:27 +02:00
parent 61604356ac
commit 839293c4cd

View File

@ -208,7 +208,7 @@ is:
* What Docker image to build the container from, here `ubuntu`, a base Ubuntu
image;
* The command you want to run inside the container when it is launched,
here `bin/bash`, to start the Bash shell inside the new container.
here `/bin/bash`, to start the Bash shell inside the new container.
So what happens under the hood when we run this command?