© 2026 Hashnode
In this project, I am deploying a 3 Tier container application with Docker Compose. The application will have the following: Tier 1: Frontend: What users see in the browser (like a website). Tier 2: Backend: The brain of the app, handles requests and...

Pushing a Docker image to Docker Hub is a fundamental skill for developers and DevOps professionals. It enables seamless sharing and deployment of containerized applications. This comprehensive guide will walk you through each step, ensuring you can ...

When working with Docker, exposing ports is essential for enabling communication between your containerized application and the outside world. Whether you're running a web server, a database, or a custom app, knowing how to expose Docker ports is a f...

What is Docker? Docker is a platform designed to simplify the development, deployment, and operation of applications by using containers. It’s an open-source tool, written in Go, that enables OS-level virtualization. Containers allow applications to ...

Hey there, tech enthusiasts! Ready to start a journey into the world of Docker? Buckle up, because we're about to dive deep into the world of containerization, exploring every aspect of this game-changing technology. What's Docker All About? At its c...

In today's fast-paced software development landscape, continuous integration and continuous deployment (CI/CD) have become indispensable practices. They enable teams to automate the building, testing, and deployment of applications, resulting in fast...

Launch an EC2 Instance OS > ubuntu If we want to build docker containers, run before installation of docker engine we have to update the machine CMD > sudo apt-get update -y (packages latest versions will get installed) CMD > sudo apt-get upgrade -y ...
