The development of Kerbal Space Program 2 was terminated prematurely, just at the time when the major bugs were removed, but before the application would provide significant benefits over version 1. With mods, Kerbal Space Program 1 can provide the same visual quality with less bugs and better performance. As the development of version 1 …
Author Archives: Laszlo Pinter
Determine the Azure Container App memory usage
To determine how much memory the Azure Container App needs, we can use the Metrics feature. To monitor the resource usage
Pass environment variables to Azure Container Apps
To pass secrets, configuration values to Azure Container Apps we can use the Azure CLI or the Azure Portal. To pass an environment variable value to toe Azure Container App using the Azure CLI execute the command in a terminal To use the Azure Portal web interface
Deploy the new version of the application in Azure Container Apps
Azure Container Apps (ACA) run containers in a serverless environment with zero environment maintenance requirement. To deploy a new application in Azure Container Apps follow the steps at Deploy a web application in Azure Container Apps (ACA) To deploy a new version of the same app in Azure Container Apps
Push a Docker container image to the Azure Container Registry
To push a Docker container image to the Azure Container Registry Build the Docker container image Troubleshooting Error message when building the image docker build -t …:latest .ERROR: error during connect: Head “http://%2F%2F.%2Fpipe%2FdockerDesktopLinuxEngine/_ping”: open //./pipe/dockerDesktopLinuxEngine: The system cannot find the file specified. Solution Start the Docker Desktop application Error message when pushing the image to …
Continue reading “Push a Docker container image to the Azure Container Registry”
Create an Azure Container Registry
The Azure Container Registry hosts container images for deployment in any of the container hosting services. Create a new Azure Container Registry
To change the Azure Resource Group name
If you have created an Azure Resource Group, and want to change the name, unfortunately you cannot rename it. To change the name create a new resource group and move all resources from the old group to the new one. Create a new resource group Move the resources from the old resource group to the …
Deploy a web application in Azure Container Apps (ACA)
To deploy an application to Azure Container Apps
Manage GitHub Copilot budget
The GitHub Copilot budget allows us to make sure we get the necessary premium assistance with a predictable price. AI agent usage is charged by the complexity of the request and response, so the charges are very unpredictable The $10 GitHub Copilot Pro subscription includes the free tier usage, that is may not enough if …
Creating Tailwind theme collections
Tailwind is a rapid web development tool to style user interfaces using English like expressions. It has advantages and disadvantages. Advantages Instead of complex CSS, use English like style class names to control all aspects of the web interface Disadvantages When we use CSS, we create classes to style similar elements, like submitButton, searchField. Tailwind …