Search code examples
azureamazon-web-servicesdockermigrationibm-cloud

Migration of docker image from AWS to Bluemix or Azure


I have a newbie regarding docker. I would like to know if it is possible to export a docker image created for AWS to Bluemix or Azure. My docker image contains a websocket server under NodeJS and a MongoDB database.

Thank you for your help


Solution

  • Access your aws cloud and use:

    docker save -o image.tar image:1.0 #exporte docker image
    

    After concluded that, access your new cloud and use:

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