Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Fixes a minor typo in line 35
Browse files Browse the repository at this point in the history
`dowloads` not reads `downloads`
  • Loading branch information
susiirwin committed Dec 22, 2017
1 parent 35e31f7 commit 08eaaae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beginner/chapters/alpine.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ drwxr-xr-x 5 root root 4096 Mar 2 16:20 lib
```
What happened? Behind the scenes, a lot of stuff happened. When you call `run`,
1. The Docker client contacts the Docker daemon
2. The Docker daemon checks local store if the image (alpine in this case) is available locally, and if not, dowloads it from Docker Store. (Since we have issued `docker pull alpine` before, the download step is not necessary)
2. The Docker daemon checks local store if the image (alpine in this case) is available locally, and if not, downloads it from Docker Store. (Since we have issued `docker pull alpine` before, the download step is not necessary)
3. The Docker daemon creates the container and then runs a command in that container.
4. The Docker daemon streams the output of the command to the Docker client

Expand Down

0 comments on commit 08eaaae

Please sign in to comment.