Reputation: 11
Got permission denied while trying to connect to the Docker daemon socket.
After cloning the make dev.clone error occurs while executing "make dev.provision". i am working Ubuntu 20.04 EC2
instance.
Upvotes: 1
Views: 79
Reputation: 191
Try the following command instead of make dev.clone
make dev.clone.https
It will defiantly work fine. I was facing the same error and solved by this. and please make sure that you are passing the following environmental variable each time when you pass any make command
export OPENEDX_RELEASE=lilac.master
when you pass any make command like make dev.up or clone, it's really important to set the environmental variable to set the branch.
Upvotes: 1