Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/amazon-web-services/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
将docker映像从AWS迁移到Bluemix或Azure_Azure_Amazon Web Services_Docker_Migration_Ibm Cloud - Fatal编程技术网

将docker映像从AWS迁移到Bluemix或Azure

将docker映像从AWS迁移到Bluemix或Azure,azure,amazon-web-services,docker,migration,ibm-cloud,Azure,Amazon Web Services,Docker,Migration,Ibm Cloud,我有一个关于docker的新手。我想知道是否有可能将为AWS创建的docker映像导出到Bluemix或Azure。我的docker映像包含NodeJS下的websocket服务器和MongoDB数据库 感谢您的帮助访问您的aws云并使用: docker save -o image.tar image:1.0 #exporte docker image 得出结论后,访问您的新云并使用: docker load -i image.tar #load your image to the new c

我有一个关于docker的新手。我想知道是否有可能将为AWS创建的docker映像导出到Bluemix或Azure。我的docker映像包含NodeJS下的websocket服务器和MongoDB数据库


感谢您的帮助

访问您的aws云并使用:

docker save -o image.tar image:1.0 #exporte docker image
得出结论后,访问您的新云并使用:

docker load -i image.tar #load your image to the new cloud

有了用于创建AWS容器的dockerfile,您可以简单地使用它在Bluemix上使用cf ic客户端或docker原生客户端构建容器

遵循Bluemix docker cli的参考文档

这个问题似乎很难回答。