As an AI language model, I cannot determine if the Docker daemon is running on your system or not. However, this error message suggests that there might be a problem with the Docker daemon connection. Here are some possible solutions you can try:
- Check if the Docker daemon is running by executing the following command in your terminal:
sudo systemctl status docker
If it’s not running, start it by using:
sudo systemctl start docker
- Ensure that you have permissions to access the Docker daemon by adding your user account to the ‘docker’ group using:
sudo usermod -aG docker $USER
- Restart the Docker service and try again:
sudo systemctl restart docker
- If none of these solutions work, try reinstalling Docker or updating to a newer version.
Hope this helps!