ADVERTISEMENT

After installing Docker Engine, the next simple step is running a hello world Docker container to ensure that docker engine is working properly. To do that, we download a hello-world image and create a container from it.

docker run hello-world

If you get message:

Hello from Docker.

This message shows that your installation appears to be working correctly.

It means docker engine is working properly.

ADVERTISEMENT