Hello, it sounds like you are having trouble connecting to the Docker daemon. The error message “the Docker daemon at unix:///var/run/docker.sock” usually indicates that the Docker daemon is not running or is not accessible.
To check if the Docker daemon is running, you can use the following command in your terminal:
sudo systemctl status docker
If the output shows that the Docker service is inactive or stopped, you can start it using the following command:
sudo systemctl start docker
Once you have started the Docker service, try running your Docker commands again. If you still encounter issues, feel free to provide more details about your problem and I will do my best to assist you further.




