Diego Bueno
Diego Bueno
I have the same issue and my brainless solution was to change the `user` in `docker-compose.yml` from `lamby` to `root` The short version: the containers user doesn't have permission to...
I managed the issue changing the HOST_GID in the bootstrap script to store my system's Docker group identifier. Now I can to use the socket /var/run/docker.sock inside the container and...
I got the GID using the command `getent group docker | cut -d: -f3` The build command looks like this: ``` docker-compose build \ --build-arg HOST_UID="${HOST_UID:=$(id -u)}" \ --build-arg HOST_GID="${HOST_GID:=$(getent...