Hello,
I am starting shinyproxy inside docker container along with other services in docker-compose.yml.
Everything works, except I could not figure out how to pass the --group-add
command inside docker-compose.yml.
According to example this directive is needed:
--group-add $(getent group docker | cut -d: -f3)
I can add group-add
to docker-compose.yml with docker group id on host machine (which is in my case 998), but this does not work.
What is the proper way of doing it?