BlindSniper
BlindSniper

Reputation: 1853

Moving existing docker image to Azure

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

Answers (1)

4c74356b41
4c74356b41

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

Related Questions