WebPlatformForEmbedded/meta-wpe

docker issue when trying to build the image

Closed this issue · 1 comments

I'm getting the following message even after I pull the image -

$ bitbake wpe-eglfs-image
Error, docker image yoedistro/yoe-build:stretch not installed
Please install it with: docker pull yoedistro/yoe-build:stretch

Disregard; fixed it by adding user to the docker group -

https://docs.docker.com/install/linux/linux-postinstall/

$ sudo usermod -aG docker $USER
then change docker directory ownership and permissions
$ sudo chown "$USER":"$USER" /home/"$USER"/.docker -R
$ sudo chmod g+rwx "$HOME/.docker" -R