Explorar o código

Merge pull request #6429 from mika/patch-1

Fix missing leading slash for /bin/bash executable
James Turnbull %!s(int64=11) %!d(string=hai) anos
pai
achega
93bf556f13
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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
 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?