在Azure应用服务中切换Docker映像

lyfkaqu1  于 2023-01-02  发布在  Docker
关注(0)|答案(2)|浏览(129)

正在浏览教程https://learn.microsoft.com/en-us/azure/app-service/containers/tutorial-custom-docker-image
是否可以在已经运行的appservice上切换docker映像?

nuypyhwy

nuypyhwy1#

使用以下命令:

az webapp config container set --name <app-name> --resource-group myResourceGroup --docker-custom-image-name <azure-container-registry-name>.azurecr.io/mydockerimage:v1.0.0 --docker-registry-server-url https://<azure-container-registry-name>.azurecr.io --docker-registry-server-user <registry-username> --docker-registry-server-password <password>

az Web应用程序配置容器

bihw5rsg

bihw5rsg2#

你应该去部署中心。

相关问题