add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# docker save
> 导出 Docker 镜像到归档文件。
> 更多信息:<https://docs.docker.com/reference/cli/docker/image/save/>.
- 通过将 `stdout` 重定向到 tar 归档文件来保存镜像:
`docker save {{image}}:{{tag}} > {{path/to/file.tar}}`
- 将镜像保存为 tar 归档文件:
`docker save --output {{path/to/file.tar}} {{image}}:{{tag}}`
- 保存镜像的所有标签:
`docker save --output {{path/to/file.tar}} {{image_name}}`
- 选择特定标签的镜像进行保存:
`docker save --output {{path/to/file.tar}} {{image_name:tag1 image_name:tag2 ...}}`