Reputation: 1853
We have an existing docker container which is running an dotnet core website. Requirement is to move this container to Azure and run website over cloud. All tutorials or Howtos point at creating new docker image.Can someone provide me a link or direction to achieve this requirement.
Upvotes: 0
Views: 519
Reputation: 72171
Just push the image to a docker repository that is accesible externally and pull the image from there. Depending on what you use (vms\webapp\container instances) procedures for pulling will be different. For vm's - regular procedure, for webapps - this for container instances - this
Upvotes: 1