Backup – PaaS Compute Options
Since you are hosting mission-critical applications in Azure App Services, it’s important to know about the options available for backup and restore. As the name suggests, the Backup and Restore…
Container Instances – PaaS Compute Options
Containers took virtualization of computing resources to the next level. Virtual machines run on specialized software called hypervisors. In traditional virtualization, you used to create separate virtual machines for isolating…
Docker – PaaS Compute Options
In Figure 9.11, you saw that containers are deployed with the help of a container runtime that is hosted on the host OS. Docker is an example of a container…
Azure Container Instances 2 – PaaS Compute Options
Building and Running Containers in Azure 3. You need to add the following lines to the file: FROM nginx:latest COPY ./index.html /usr/share/nginx/html/index.html <html> <body> Hello all </body> </html>…
Azure Container Instances – PaaS Compute Options
As you have seen in the Docker architecture, you can deploy containers to a virtual machine running on Azure. Since virtual machines are an infrastructure-as-a-service solution, more administration and intervention…