Skip to main content

3 posts tagged with "docker"

View All Tags

· 7 min read
Sivabharathy

Docker is a powerful platform that allows you to easily develop, package, and deploy applications in containers. Containers are lightweight, portable, and provide a consistent environment for running applications. Installing Docker on Ubuntu 24.04 is a straightforward process, but it requires a few steps to set up correctly.

In this article, we will walk you through the complete process of installing Docker on Ubuntu 24.04. We will also provide troubleshooting tips and post-installation instructions.

· 6 min read
Sivabharathy

In this guide, we will walk you through the process of running RabbitMQ inside a Docker container. RabbitMQ is an open-source message broker software that facilitates communication between services, ensuring that messages are sent and received reliably. Docker, a popular containerization platform, allows you to easily set up RabbitMQ in an isolated environment with minimal setup.

· 4 min read
Sivabharathy
### Docker and Docker Compose Cheatsheet

Docker Commands

  1. Docker Basics

    • docker --version: Check Docker version.
    • docker info: Display system-wide information.
  2. Images

    • docker images: List all images.
    • docker pull <image>: Download an image from a registry.
    • docker build -t <name>:<tag> .: Build an image from a Dockerfile in the current directory.
    • docker rmi <image>: Remove an image.