Install docker
Installation guide for docker
You can install docker by visiting the official documentation:
https://docs.docker.com/engine/install/
Once you have docker installed, you might need to set up a running docker daemon instance, as follows:
Check if you have a docker daemon instance running in the background:
systemctl status docker
sudo service docker status
sudo systemctl start docker
You can verify if the daemon is running by run:
docker info
Last updated