forked from docs/doc-exports
Reviewed-by: Eotvos, Oliver <oliver.eotvos@t-systems.com> Co-authored-by: qiujiandong1 <qiujiandong1@huawei.com> Co-committed-by: qiujiandong1 <qiujiandong1@huawei.com>
7.1 KiB
7.1 KiB
Pulling an Image
Scenario
To use an image stored in a repository, you need to pull it from the repository first. Then, you can use this image to deploy containerized applications in CCE or CCI. Pulling an image is actually downloading an image.
You can use Docker or containerd to pull images from SWR.
Docker
- Log in to the VM running Docker as the root user.
- Obtain a login command by referring to 1 and access SWR.
- Log in to the SWR console.
- In the navigation pane, choose My Images. Then click the name of the target image.
- On the image details page, click
next to the docker pull command on the Pull/Push tab. - Replace {Tag} in the image download command copied in 5 with the tag of the image to be downloaded and run the command on the VM.
Run the docker images command to check whether the images are successfully pulled.
# docker images REPOSITORY TAG IMAGE ID CREATED SIZE xxx/group/nginx v2.0.0 22f2bf2e2b4f 5 hours ago 22.8MB
- (Optional) Run the following command to save the image as an archive file:
docker save [Image name:tag name] > [Archive file name]
containerd
- Log in to the SWR console.
- In the navigation pane, choose My Images. Then click the name of the target image.
- On the Tags tab, click containerd command in the Operation column to copy the image pull command. Alternatively, go to the Pull/Push tab to copy the image pull command.
The command is only valid for six hours after it is generated. To obtain a long-term valid command, see Obtaining a Long-Term Valid containerd Pull/Push Command.
- Log in to the VM running containerd as the root user.
- Run the command copied in 3.
- Check whether the image is pulled successfully.
Parent topic: Image Management



