Manuel Danisch
Manuel Danisch
Hi @semihbkgr , Are there any updates on this issue?
Hello everybody, we had the same problem. We were targeting a private repository and there are no ssh agents running on our machines. The [documentation](https://docs.docker.com/compose/how-tos/multiple-compose-files/include/#example) states: `include allows you to...
Ah OK, further testing uncovered a subtle mistake I made : I used `/` instead of `:` in my URL. `[email protected]/$OWNER/$REPO.git#$BRANCH:$PATH` => wrong `[email protected]:$OWNER/$REPO.git#$BRANCH:$PATH` => works `ssh://[email protected]/$OWNER/$REPO.git#$BRANCH:$PATH` => works as...
So, in my case, this is working on a private repository (I can access manually using ssh outside of compose): ```yaml include: - path: [email protected]:$OWNER/$REPO.git#$BRANCH:$PATH ``` `docker compose config` returns...