High-level details to migrate docker-compose from v1 to v2 are available in this blog, “Docker-Compose v1 End of Life in June 2023. Welcome Docker Compose v2! Upgrade Instructions,” authored by Martin Miles. Here in this article, we are going to see step-by-step code changes required to migrate docker-compose from v1 to v2. 1: Check, if […]
Posts Tagged ‘Docker’
Introduction to Terraform (EC2 Creation using Terraform)
TABLE OF CONTENTS Introduction Infrastructure as Code (IaC) Benefits of IaC include: Why Terraform? Key Concepts and Components of Terraform Setting Up Terraform and Creating Your First Configuration Conclusion Key Concepts and Components of Terraform Terraform has several key concepts and components that you should be familiar with: Providers: Providers are responsible for managing the lifecycle […]
Deployment of Spring Boot App on Amazon EKS Using GitHub, Jenkins, Maven, Docker, and Ansible
Deployment of Spring Boot App This is a common use case scenario that is used by several organizations. I hope this detailed blog is helpful to understand the CI/CD process. Let’s get started and dig deeper into each of these steps. Step 1 — Create an Ubuntu T3 Large Instance Select an existing key pair or […]
Docker-Compose v1 End of Life in June 2023. Welcome Docker Compose v2! Upgrade Instructions
Docker has decided to sunset v1 of Compose so we need to update our docker stuff. Sitecore is working at their end to bring all the required support. Let’s take a look at what actions we as developers need to take in order to migrate to v2 smoothly. What is Docker Compose? Docker Compose simplifies […]
Troubleshooting Docker Container Problems Part 2
We discussed a few Docker problems in the Troubleshooting Docker Container Problems article with its solutions. We will discuss several other Sitecore docker issues in this article. Problem 1: Requested resource is in use ERROR: for xxxxxx Cannot start service xxxxxx: hcsshim: CreateComputeSystem xxxxxxxxxxxxxxxxxxx. The Requested resource is in use. First Solution: The very first […]
Troubleshooting Docker Container Problems
Several factors could cause Sitecore containers running on Docker to stop functioning or display as unhealthy containers. To troubleshoot or fix the errors, we ran into a few Docker container issues, which we have listed below. This helped us identify and comprehend the root causes of the problems, which allowed us to check and fix […]
Sitecore, ltcs2022, Docker, VMs and Windows 11
Sitecore recently updated their docker images to use ltsc2022. Martin Miles showed us what that means for developers and how to update your container environment to run Sitecore in process isolation mode. In short, process isolation is again a viable option to improve performance of running containers locally. I was hopeful the ltsc2022 images were […]
Not just Next.js! Making XM Cloud work with .NET Core Headless Renderings
Next.js is a wonderful framework and paired with its vendor platform (Vercel) it indeed provides exceptional capabilities for building natively headless applications. That unfortunately shadows out another great SDK for headless implementations – .NET Core Renderings, which in my opinion is undervalued. So, I decided to give it some more care by making it work […]
Troubleshooting Docker Connectivity Issues
If you’re planning on working with Sitecore 10.3 locally, you may run into issues when setting up a Docker container. One problem you might encounter when setting up Sitecore Docker is when trying to pull packages down, such as the .NET SDK, you might get an error that says “The remote name could not be […]
LTSC2022 images for Sitecore containers released: what does it mean to me?
Exciting news! Sitecore kept the original promise and released the new ltsc2022 container images for all the topologies of both the 10.3 and 10.2 versions of their platform. The biggest benefits of new images are improved image sizes – almost 50% smaller than ltsc2019, and support for running Process Isolation on Windows 11. Check it […]
Using Docker – Multiple Virtual Machines
I work on multiple projects at the same time. In my daily workflow, I switch between projects throughout the day. It is important for me to keep my projects separate for security reasons. To accomplish this, I have a separate virtual machine for each client. I am able to stay logged in to required systems, […]
Using Docker – docker-index.exe High CPU and Disk Usage
I recently updated Docker Desktop to version 4.16.3. My system ran much slower than I am used to when running docker. My first reaction is to open task manager and see what is going on with my system. Docker Desktop is using 81% of my CPU!!!?? Expanding the item, I notice the culprit is docker-index.exe. […]