Merge pull request #472 from Bill0412/english

Translate image/pull.md to English
pull/475/head
Kang Huaishuai 2020-10-28 21:25:56 +08:00 committed by GitHub
commit 500325b7c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 28 deletions

View File

@ -1,13 +1,13 @@
# 使 Docker # Use Docker Images
Docker As we have introduced before, `image` is one of the 3 major components of Docker.
Docker Docker Upon running docker container, it can run local image or if the image is not locally available, it will download from a registry.
In this chapter we will introduce more about `image`, including
* * Pull images from registry
* * Manage local images
* * The mechanisms and implementaion of images

View File

@ -1,19 +1,20 @@
## ## Pull Docker Images
[Docker Hub](https://hub.docker.com/explore/) 上有大量的高质量的镜像可以用,这里我们就说一下怎么获取这些镜像。 As we have mentioned, there are many high quality docker images on [Docker Hub](https://hub.docker.com/explore/). In this section, we will introduce how to `pull` these images.
Docker `docker pull` The command to fetch image from docker registry is `docker pull`. The command format is:
```bash ```bash
docker pull [] [Docker Registry [:]/][:] docker pull [OPTIONS] [Docker Registry ADDRESS[:PORT]/]NAME[:TAG]
``` ```
`docker pull --help` More options can be found by `docker pull --help` command. Now let us see the format for image names.
* Docker `<域名/IP>[:端口号]` Docker Hub * Docker Repository Address: the address format is typically `<domain/IP>[:PORT]`. The default address is Docker Hub.
* `<用户名>/<软件名>` Docker Hub `library`
* Repository: as mentioned before, the repository name consists of 2 parts, i.e., `username/software-name`(separated by the slash). For docker Hub, if the username is not specified, the default is `library`, where all the official images are in.
For example,
```bash ```bash
$ docker pull ubuntu:18.04 $ docker pull ubuntu:18.04
@ -27,17 +28,17 @@ Digest: sha256:147913621d9cdea08853f6ba9116c2e27a3ceffecf3b492983ae97c3d643fbbe
Status: Downloaded newer image for ubuntu:18.04 Status: Downloaded newer image for ubuntu:18.04
``` ```
Docker Docker Hub `ubuntu:18.04` `library/ubuntu` `18.04` The Docker image repository is not given, so it will pull the image from Docker Hub. Since the image name is `ubuntu:18.04`, so it will get the official image with tag `18.04` from `library/ubuntu`.
ID 12 `sha256` From the download log, we can see the layered storage concept - images are composed of multiple layers of storage. And we download images layer by layer instead of a single file. During the download process, the first 12 hexadecimal bits of each layer are shown. And after the download, the `sha256` summary is given, to verify the integrity of downloaded files.
使 ID `sha256` bug使 When using the above command, you may find that the layer ID and `sha256` you see are different from what they are here, because the official layer is maintained and updated frequently. In case there is any new bug or new edition, the image will be rebuilt and published with the original tag. This makes sure that all the users use safer and more stable images.
* Docker Hub [](/install/mirror.md) * *If it is slow to download images from Docker Hub, you can refer to [Image Accelerators](/install/mirror.md) to configure accelerator.*
### ### Run
With the image, we can run a container based on the image. Taking the above `ubuntu:18.04` as an example, if we want to start the `bash` inside it for interactive operations, we can execute the following commands.
`ubuntu:18.04` `bash`
```bash ```bash
$ docker run -it --rm \ $ docker run -it --rm \
@ -59,13 +60,16 @@ VERSION_CODENAME=bionic
UBUNTU_CODENAME=bionic UBUNTU_CODENAME=bionic
``` ```
`docker run` [](../container) `docker run` is the command for running the container, the detailed format will be explained in the [container](../container) chapter. Here we only illustrate the parameters used above.
* `-it` `-i` `-t` `bash` * `-it`: There are 2 parameters here, the first is `-i`, for interactive operations, another is `-t`, which is for terminal. What we intend to do is to enter the `bash` terminal of docker, then execute some commands and see the output. That's why we need the interactive terminal.
* `--rm`退退 `docker rm`便使 `--rm`
* `ubuntu:18.04` `ubuntu:18.04`
* `bash` **** Shell `bash`
Shell `cat /etc/os-release` Linux `Ubuntu 18.04.1 LTS` * `--rm`: Remove the docker after stop it. In default, for troubleshooting, the docker is not removed immediately after quitting, unless manually remove it using `docker rm`. But in our case, we only test the commands and to see the resutls, we don't care much about the results, so we use `--rm` to avoid wasting space.
`exit` 退 * `ubuntu:18.04`: use `ubuntu:18:04` as the base image to start the container.
* `bash`: What we have after the image name is **command**, since we want an interactive shell, so we use `bash` as the command here.
After entering the comainer, we can execute any command we want. Here, we executed `cat etc/os-release`, which is the commonly-used command to view the version of the current OS. We can see from the result that the container is based on `Ubuntu 18.04.1 LTS`.
In the end, we quit the container with `exit`.