Desi Cultural Circle (DCC)

Click Here : https://forms.gle/bjCvL53Hxsb1XPV36

Engineering

 https://github.com/T-Kuhn/HighPrecisionStepperJuggler


https://github.com/EdjeElectronics/OpenCV-Playing-Card-Detector

Docker - Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock

 

ERROR: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.24/info: dial unix /var/run/docker.sock: connect: permission denied code example

Example 1: Got permission denied while trying to connect to the Docker daemon socket

sudo chmod 666 /var/run/docker.sock

Example 2: Server: ERROR: Got permission denied while trying to connect to the Docker daemon socket

sudo newgroup docker
sudo chmod 666 /var/run/docker.sock
sudo usermod -aG docker ${USER}