我有一个关于码头工的新手。我想知道是否可以将为AWS创建的docker镜像导出到Bluemix或Azure。我的docker镜像包含NodeJS下的websocket服务器和MongoDB数据库。
感谢您的帮助
答案 0 :(得分:0)
访问您的aws云并使用:
docker save -o image.tar image:1.0 #exporte docker image
在得出结论之后,访问您的新云并使用:
docker load -i image.tar #load your image to the new cloud
答案 1 :(得分:0)
使用您用于创建AWS容器的dockerfile,您只需使用它来使用cf ic客户端或docker native
在Bluemix上构建容器遵循Bluemix docker cli的参考文档
https://www.ng.bluemix.net/docs/containers/container_cli_reference_ov.html
https://www.ng.bluemix.net/docs/containers/container_cli_ov.html