Hemant Sharma has Published 37 Articles

How to Debug a Node.js app in a Docker Container?

Hemant Sharma

Hemant Sharma

Updated on 05-Jan-2023 15:40:21

608 Views

Introduction Bugs are bugging mankind since ancient times. At that time they produced different diseases but today’s bugs are logical errors in the program. Sometimes these are also a nightmare for developers. Here in this article, we will learn to create a Node.js app on a Docker container and also ... Read More

How to add Credentials to Docker ADD command?

Hemant Sharma

Hemant Sharma

Updated on 05-Jan-2023 15:40:00

4K+ Views

Introduction Security has always been a great threat to mankind. In IT the security of credentials is a tedious task. Here, we are going to discuss various methods to add the credentials to the docker container. Also, the most useful and secure methods are mentioned. Methods Adding credentials can ... Read More

How to run amd64 Docker images on the arm64 host platform?

Hemant Sharma

Hemant Sharma

Updated on 28-Dec-2022 11:34:07

8K+ Views

Before knowing how to run amd64 docker images on the arm64 host platform, we must know what this means. There is a term called multi-architecture or multi-platform docker container images. These images contain the ability to run on various base or host architectures provided at the time of containerization of ... Read More

How to run Gunicorn on Docker?

Hemant Sharma

Hemant Sharma

Updated on 28-Dec-2022 11:30:25

6K+ Views

In this article, we are going to learn about how to run Gunicorn on Docker. Before creating the docker container with the gunicorn functionalities, we must know some of the basics of web servers and gunicorn. Introduction to Gunicorn Let us suppose we have a web server that shows the ... Read More

How to pass command line arguments to a python Docker container?

Hemant Sharma

Hemant Sharma

Updated on 28-Dec-2022 11:23:23

12K+ Views

Before getting into the docker container arguments we must know about python command line arguments and how they are accessed by the developer. Command line arguments are of great use when we want our python script to be controlled outside of the program. Access the python script’s command line arguments ... Read More

How to Hot-Reload in ReactJS Docker?

Hemant Sharma

Hemant Sharma

Updated on 28-Dec-2022 11:17:20

9K+ Views

Hot-Reloading is adding dynamic functionality to the react application on the web browser. This means if we change something in the code of the application it immediately reflects this change on the web application front. But before “reloading” anything we must know “loading”, that is to make some ReactJs project ... Read More

How does the Docker network work?

Hemant Sharma

Hemant Sharma

Updated on 28-Dec-2022 11:14:15

281 Views

The best feature of Docker is “Containerization and Networking.” Using containerization, we could create an independent and isolated environment for various use cases like web applications (“Apache”), database servers (“MongoDB”), and operating systems (“Ubuntu”). But the Docker network allows us to connect these containerized applications to communicate with each other ... Read More

Advertisements