在 Azure 上,我可以 运行 ASE 中的 Windows Docker 容器吗?
On Azure, can I run a Windows Docker container in an ASE?
我有一个 MVC 4 Web Api 应用程序,我想 运行 在 Azure 中。使用 docker-compose 和 Dockerfile 我在本地 运行ning 完美地获得了它,推送到 Azure 容器注册表,它在测试 Web 应用程序上 运行ning作为概念证明。
根据我们的政策,任何使用 PII 访问数据库的站点都必须 运行 在专用网络上。我们已经设置了一个 ASE,它是 运行ning Linux 容器和 Windows 代码应用程序,没有问题。当我尝试使用 Windows Docker 创建新的 Web 应用程序时,我无法创建独立的服务计划。当我尝试创建一个时收到以下消息。
Isolated pricing tiers within an App Service Environment (ASE) are not available for your configuration
Azure 是否支持 运行ning Windows Docker ASE 中的 Web 应用程序?如果是这样,我错过了什么?
目前,windows 容器在 ASE 中不受支持。看看下面这张图片。对于 ASE 上的 Linux,Windows、Linux 和容器化 Web 应用程序可以部署到同一个 ASE 中,共享同一个 VNet。因此,您已经设置了一个 ASE,它是 运行 Linux 容器和 Windows 代码应用程序,没有问题。
对于 creating a Windows Containers in Azure Web App,您必须创建具有价格层(PC2、PC3、PC4)的应用服务计划,因为 Azure 专门为应用添加了三个新的 高级 SKU服务计划托管使用 Windows 容器部署的应用程序。
These new SKUs all provide Dv3 series capabilities, offering customers
more choice for their applications. The new Premium Container Tier
offers customers three options in which to run their containers:
Small (2 CPU vcores, 8GB Memory) Medium (4 CPU vcores, 16GB Memory)
Large (8 CPU vcores, 32GB Memory) Pricing tiers
参考:Announcing the public preview of Windows Container Support in Azure App Service
和Linux on Azure App Service Environment now generally available
我有一个 MVC 4 Web Api 应用程序,我想 运行 在 Azure 中。使用 docker-compose 和 Dockerfile 我在本地 运行ning 完美地获得了它,推送到 Azure 容器注册表,它在测试 Web 应用程序上 运行ning作为概念证明。
根据我们的政策,任何使用 PII 访问数据库的站点都必须 运行 在专用网络上。我们已经设置了一个 ASE,它是 运行ning Linux 容器和 Windows 代码应用程序,没有问题。当我尝试使用 Windows Docker 创建新的 Web 应用程序时,我无法创建独立的服务计划。当我尝试创建一个时收到以下消息。
Isolated pricing tiers within an App Service Environment (ASE) are not available for your configuration
Azure 是否支持 运行ning Windows Docker ASE 中的 Web 应用程序?如果是这样,我错过了什么?
目前,windows 容器在 ASE 中不受支持。看看下面这张图片。对于 ASE 上的 Linux,Windows、Linux 和容器化 Web 应用程序可以部署到同一个 ASE 中,共享同一个 VNet。因此,您已经设置了一个 ASE,它是 运行 Linux 容器和 Windows 代码应用程序,没有问题。
对于 creating a Windows Containers in Azure Web App,您必须创建具有价格层(PC2、PC3、PC4)的应用服务计划,因为 Azure 专门为应用添加了三个新的 高级 SKU服务计划托管使用 Windows 容器部署的应用程序。
These new SKUs all provide Dv3 series capabilities, offering customers more choice for their applications. The new Premium Container Tier offers customers three options in which to run their containers:
Small (2 CPU vcores, 8GB Memory) Medium (4 CPU vcores, 16GB Memory) Large (8 CPU vcores, 32GB Memory) Pricing tiers
参考:Announcing the public preview of Windows Container Support in Azure App Service
和Linux on Azure App Service Environment now generally available