How to Dockerize a ReactJS App ?
Docker is an open-source containerization platform used for building, running, and managing applications in an isolated environment. A container is isolated from another and bundles its software, libraries, and configuration files. Containers share resources with other containers running on the same host OS and provide OS-level isolation that is far more efficient than virtualization. This enables us to manage our infrastructure in the same way as we do our applications.  React is a Javascript library created and maintained by Meta Inc. for building user interfaces or UI components. It is free, open-source and one of the most popular Javascript in the world....
read more
How to call ‘npm start’ though docker ?
The following article covers how to call npm start through docker. While doing so, we will dockerize a simple React App....
read more
How to Dockerize an ExpressJS App ?
Docker is an open-source containerization platform used for building, running, and managing applications in an isolated environment. A container is isolated from another and bundles its software, libraries, and configuration files. This article will discuss how to dockerize an Express app for the development and deployment phases....
read more
Next.js Docker Images
Docker is a set of platform-as-a-service products that create isolated virtualized environments for building, deploying, and testing applications with ease. In this tutorial, we will learn to create an image of a Next.js application. Next.js is a React framework that helps in building server-side rendering web applications....
read more
Load Balancing Flask Application using Nginx and Docker
Load balancing means efficiently distributing the incoming traffic to different server instances. Nginx is open-source software that can be used to apply load balancing to backend systems. Nginx also can be serve services such as reverse proxy, caching, web server, etc....
read more
Installing Helm & Kubernetes in Docker
Helm is simply a package manager for Kubernetes. It helps you manage Kubernetes applications — Helm Charts helps you define, install, and upgrade even the most complex Kubernetes application....
read more
How to Create a Dockerfile in Node.js ?
A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image. It is something like a shellscript that gathers multiple commands into a single document to fulfill a single task....
read more
How to Dockerize django application for production deployment with Gunicorn and Nginx
Docker is an open-source containerization platform used for building, running, and managing applications in an isolated environment. A container is isolated from another and bundles its software, libraries, and configuration files. Django is an open-source Python web framework that can be used to quickly develop fully functional web applications. In this article, we will discuss how to dockerize a Django app for deployment purposes....
read more
Use of Docker Playground
Pre-requisite: Docker...
read more
How To Persist Data In A Dockerized Postgres Database Using Volumes ?
Docker and Postgres are two widely used tools in the software development field. Docker simplifies the deployment process by encapsulating applications within a container while Postgres provides a robust and reliable database to store and manage data. In this guide, I will first briefly discuss Docker and Postgres. Then I will guide you through the various steps to persist your Postgres container data using docker volumes....
read more
Top 10 Docker Projects Ideas for Beginners [2024]
Docker is a revolutionary tool used in the software world for developing, packaging, deploying, and managing applications efficiently. It is going to become the most demanding technology in 2024 and having projects of docker in skill bank is more valuable for developers....
read more
Run PostgreSQL on Docker and Setting Up pgAdmin
PostgreSQL, an effective tool, is a free­-to-use relational database management system. Docker can quickly construct and orche­strate its instances without bothering about the complexity of setup or depe­ndencies. This step-by-step simple guide will show you how to get Postgre­SQL on Docker, and then, use the pgAdmin extension to look at the database­....
read more