Creating Scalable Microservices with Docker

Introduction Scalability is a key characteristic in building modern applications. Microservices architecture is a popular approach in building scalable applications. It lets developers break down a monolithic application into small, loosely coupled services. Each service is responsible for a particular functionality and can be independently deployed, scaled and maintained. Docker Continue Reading

Creating serverless functions using AWS Fargate

Introduction Serverless architecture has gained popularity among developers over the past few years. It is an approach that allows developers to build and run applications without having to worry about server infrastructure. AWS Fargate is one of the many serverless computing services that AWS provides to developers. In this tutorial, Continue Reading

Managing containers with Azure Container Instances

Introduction Containerization is the process of packaging an application in an isolated environment called a container. Containers have emerged as a reliable and efficient way of managing software application packaging and deployment across a range of platforms, including the cloud. Azure Container Instances (ACI) is a Microsoft-managed service that enables Continue Reading

Working with Docker Containers

Introduction Docker is a platform that enables developers to package, ship, and run applications in containers. Containers are lightweight virtualized environments that provide a consistent runtime environment for applications. Docker containers can be used to develop, deploy, test, and run applications in any environment, on any machine, with minimal overhead. Continue Reading

Deploying your Docker Containers using Amazon Elastic Container Service (ECS)

Introduction Docker is a popular technology for containerization of applications allowing developers to package an application with all of its dependencies into a container that can run on any Linux machine. It makes it easy for developers to build, deploy, and run applications in a consistent environment that can be Continue Reading