Error by running "hollaex server --setup"

I’m having this error at the moment of running “hollaex server --setup”, did someone know how to solve it?

Hello.

The error message means that your Docker daemon is not started on your computer.

You can check the Docker daemon status with sudo systemctl status docker.

If it’s not running yet, you can run it with sudo systemctl start docker.

Later on, you can set the Docker to be always started on every reboot.

Here’s the command for that: sudo systemctl enable docker.

Good luck :slight_smile: