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
Instead of using Azure Container Instances, I used Azure WebApps for Containers.
No, push the images to the Azure Container Registry just push the images, not the volume that mounts to the containers.
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.