Open
Description
I use this tool with Docker to check our internal libraries if our devs don't add bc breaks. I run it manually on my local machine for larger PRs, not automatically in GH actions.
So I need to modify the command a little bit and maybe someone in the same situation can benefit from that:
docker run --rm -v ~/.composer/auth.json:/composer/auth.json:ro -v ~/.ssh:/root/.ssh:ro -v `pwd`:/app nyholm/roave-bc-check
That mounts the auth.json
for composer (private Satis) and SSH keys to the container. It didn't work initially and I had to dig into the image to realize that the composer path is not in /root/.composer
(which is the default) but in /composer
.
Maybe it can be added to the readme to point users with private packages to the right direction?
Thanks!
Activity