0
next... I’m working on a system project in Laravel, I’m having a problem in Docker, I can’t run the application, I have the Docker installed on my machine and I’ve already stopped in the images. This project was developed by another team now me and the team I am part of will perform tests and improvements on these codes. We use Linux Mint 20.2 to run the codes when I run ./sail up -d he returns to me that the Docker is not running, I check if it rotates, and it is running, we have tried a lot, if anyone can give me a light thank you
By default the Docker daemon requires root access, this is a problem when using Sail as they cannot guarantee such Docker access. There is a session in the Docker installation documentation which describes how you should allow your Docker. In short, run this command and then log out or restart:
sudo groupadd docker && sudo usermod -aG docker $USER
– Daniel Freitas