Is the docker daemon running on this host. What could be the problem here. This question has already been answered, but here's an additional piece of information. No matter if you're on Arch or another distribution like Fedora or Ubuntu, Docker uses a socket file to communicate. When you run docker commands, it uses this socket to talk to the Docker daemon. Of course, the daemon must be running arch linux docker it's often disabled by defaultbut if your user can't access the socket, it wouldn't be able to communicate with the daemon either. You would first install Docker from the distribution's repository. Some people download an install script and pipe it to a shell curl. Arch: pacman -S docker Fedora: dnf install docker As mentioned above, the daemon may be disabled by default. If you want to use Docker, the daemon must be running. A regular user does not have sufficient permissions to access the socket. It's not able to reach the daemon, so it assumes it's not running and shows this error: Cannot connect to the Docker daemon. Is the docker daemon running on this host. This is why many people simply start all Docker commands as root, using sudo. But as described in the other answer, Docker has its own mechanism for that, so using sudo is not necessary. Ideally, a group called docker is created when installing Docker. However, if that group does not exist when the daemon is started, the socket file is owned by root. In some cases, that group used to have a different name, like. If it exists, Docker will automatically use it, i. But of course, the same is true for sudo - only trusted users should be in the wheel group. After doing some research into solving this problem on my Linux system I thought I would write this answer. Here is what I did to fix the problem. The problem was in sockets allocated to docker-daemon and docker-client. For me it was set to 0. It was set in the configuration file of dockerd. Is the docker daemon running. arch linux docker Provide details and share your research. To learn more, see our.