💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
镜像可以tar包的形式导出到本地,然后可以把这个文件导入到docker 镜像中。 # 1. 导出镜像到本地 save `docker save [options] images [images...]` 示例 `docker save -o nginx.tar nginx:latest` 或 `docker save > nginx.tar nginx:latest` 其中-o和>表示输出到文件,`nginx.tar`为目标文件,`nginx:latest`是源镜像名(name:tag) # 2. 导入本地的镜像 ### load `docker load [options]` 示例 `docker load -i nginx.tar` 或 `docker load < nginx.tar` 其中-i和<表示从文件输入。会成功导入镜像及相关元数据,包括tag信息 ``` [root@bogon html]# docker load -i nginx.tar 7e718b9c0c8c: Loading layer [==================================================>] 72.52MB/72.52MB 4dc529e519c4: Loading layer [==================================================>] 64.81MB/64.81MB 23c959acc3d0: Loading layer [==================================================>] 3.072kB/3.072kB 15aac1be5f02: Loading layer [==================================================>] 4.096kB/4.096kB 974e9faf62f1: Loading layer [==================================================>] 3.584kB/3.584kB 64ee8c6d0de0: Loading layer [==================================================>] 7.168kB/7.168kB Loaded image: nginx:latest [root@bogon html]# docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest 62d49f9bab67 2 weeks ago 133MB ```