Docker

How to Start the Docker Daemon Process?

The Docker daemon process is responsible for managing Docker containers and images on the user’s system. Developers need to start the Docker daemon process to use Docker containers and images on their local machine. When the Docker daemon process is started on a user’s machine, it creates a Docker environment that allows them to build, run, and manage Docker containers and images.

This blog will illustrate:

How to Start/Begin the Docker Daemon Process on Windows?

The Docker daemon process starts automatically in the background once Docker Desktop is launched. To do so, search for the “Docker Desktop” app in the Start menu and open it:

Upon doing so, the Docker Desktop is opened, and the Docker Daemon process is started as below:

In the above output, the Docker Engine is running, which indicates that the Docker Daemon process has been started.

How to Start/Begin the Docker Daemon Process on Linux?

To start the Docker Daemon process on Linux, execute the “sudo systemctl start docker” command. Let us practice this command in the Ubuntu terminal:

sudo systemctl start docker

The above-stated command has started the Docker Daemon process.

Then, verify whether the Docker Daemon process has been started or not, utilize the given-provided command:

sudo systemctl status docker

The above output indicates that the Docker Daemon process has been started successfully.

Conclusion

To start or begin the Docker Daemon process in Windows, users need to launch the “Docker Desktop” app. Upon doing so, the Docker daemon process starts automatically in the background. To start the Docker Daemon process on Linux, users need to run the “sudo systemctl start docker” command on the Ubuntu terminal. This article has explained the methods to start the Docker daemon process.

About the author

Laiba Younas

I have done bachelors in Computer Science. Being passionate about learning new technologies, I am interested in exploring different programming languages and sharing my experience with the world.