docker如何进行移植
时间:2020-04-01 11:17
docker进行移植的方法:
1、使用export命令导出docker容器
docker export 容器名或者容器ID > 导出的路径以及tar包的名字
例如:
docker export centos > ./centos.tar
2、在其他机器上导入:
docker import tar包路径 REPOSITORY :tag --------默认tag为latest
例如:
docker import centos.tar test/centos
更多相关教程,请关注PHP中文网docker教程栏目。
以上就是docker如何进行移植的详细内容,更多请关注gxlcms其它相关文章!