Просмотр исходного кода

Fix missing leading slash for /bin/bash executable

Michael Prokop 11 лет назад
Родитель
Сommit
e9f1f760f2
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      docs/sources/introduction/understanding-docker.md

+ 1 - 1
docs/sources/introduction/understanding-docker.md

@@ -208,7 +208,7 @@ is:
 * What Docker image to build the container from, here `ubuntu`, a base Ubuntu
 * What Docker image to build the container from, here `ubuntu`, a base Ubuntu
 image; 
 image; 
 * The command you want to run inside the container when it is launched,
 * 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?
 So what happens under the hood when we run this command?