DEV Community

Kamrul Hasan
Kamrul Hasan

Posted on

1 1 1 1 1

Check Docker Installation Details- part 1

Image description

Checking Docker Version and Status

Introduction
In this tutorial, we will learn how to verify Docker installation and ensure it's working correctly.

1.At first, let's check the version of Docker that's installed on your system. Open a terminal and make sure you are root user and run the following command:

docker –version
Enter fullscreen mode Exit fullscreen mode

Image description

2.For more detailed version information, including both the client and server components, use:

docker version
Enter fullscreen mode Exit fullscreen mode

Image description

If you receive an error saying "docker: command not found," it indicates that Docker is not installed correctly or not in your PATH.

Check Docker Daemon Status

3.Let's verify that the Docker daemon (service) is running. The Docker daemon is the background service responsible for managing Docker containers.
Run the following command,

systemctl status docker

Enter fullscreen mode Exit fullscreen mode

You should see output indicating that the Docker service is active and running:

Image description
Press q for quite this session.

4.If the Docker service is not running, you can start it with:

systemctl start docker
Enter fullscreen mode Exit fullscreen mode

Image description

5.To ensure Docker starts automatically when your system boots, you can enable it:

systemctl enable docker
Enter fullscreen mode Exit fullscreen mode

Image description

Check Docker Info

6.For a comprehensive overview of your Docker installation, use the docker info command:

docker info
Enter fullscreen mode Exit fullscreen mode

Image description

This will display detailed information about your Docker installation, including:
• Container and image counts
• Storage driver
• Docker root directory
• Runtime information
• Network settings
• Registry configuration
The output will be quite extensive but provides valuable information about your Docker setup.

LinkedIn: https://linkedin.com/in/kamrul-dev
GitHub: https://github.com/kamrul-dev

Related Keywords:
How to verify Docker installation on your system,
Checking Docker version and system info via CLI,
Confirming Docker is properly installed on Linux/Mac/Windows,
Commands to check Docker installation status,
Troubleshooting Docker setup issues,

Kamrul Hasan DevOps Engineer,
DevOps tips by Kamrul Hasan,
Kamrul Hasan Docker tutorials,
Learn DevOps with Kamrul Hasan,
Kamrul Hasan automation expert,
Kamrul Hasan cloud and containers,
CI/CD pipelines by Kamrul Hasan,
Kamrul Hasan Kubernetes & Docker,

DevCycle image

Ship Faster, Stay Flexible.

DevCycle is the first feature flag platform with OpenFeature built-in to every open source SDK, designed to help developers ship faster while avoiding vendor-lock in.

Start shipping

Top comments (0)

Runner H image

Automate Your Workflow in Slack, Gmail, Notion & more

Runner H connects to your favorite tools and handles repetitive tasks for you. Save hours daily. Try it free while it’s in beta.

Try for Free

👋 Kindness is contagious

Discover fresh viewpoints in this insightful post, supported by our vibrant DEV Community. Every developer’s experience matters—add your thoughts and help us grow together.

A simple “thank you” can uplift the author and spark new discussions—leave yours below!

On DEV, knowledge-sharing connects us and drives innovation. Found this useful? A quick note of appreciation makes a real impact.

Okay