skip to Main Content

I have a Linux CentOS host running Docker Ce with multiple containers running a few multi-containers apps (webapps using docker-compose) and I would like to migrate those containers to Azure Containers serverless platform.

How can i migrate all those containers with the volumes?

Making a Azure container registry and push the containers to that registry will move the data volumes? or how is the process to migrate?

Thanks

2

Answers


  1. Chosen as BEST ANSWER

    Instead of using Azure Container Instances, I used Azure WebApps for Containers.


  2. Making an Azure container registry and push the containers to that
    registry will move the data volumes?

    No, push the images to the Azure Container Registry just push the images, not the volume that mounts to the containers.

    How can I migrate all those containers with the volumes?

    You just can use the ACI via docker-compose to deploy the YAML to the ACI without the local volumes. You can try to upload the files to the Azure File Share and mount the File share to each instance.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search