What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi I have a secured composer library, that requires an ssh key to access it from gitlab, how do I a

Posts: 516 πŸ§‘πŸ»β€πŸš€ - Cadet

Hi

I have a secured composer library, that requires an ssh key to access it from gitlab, how do I add a key to my docker setup that allows me to get the library without getting this error:


Welcome!

It looks like you're new here. Sign in or register to get started.

Comments

  • Posts: 232 πŸ§‘πŸ»β€πŸš€ - Cadet
    edited November 2021
    1. Use HTTPS instead of SSH for your private repositories in composer.json
    2. Create a GitLab token for yourself with read_api and read_repository permissions.
    3. Run composer config gitlab-token.<your-repo-server> <your-access-token>
    4. This will create an auth.json file which should be added to .gitignore etc.
      Additionally, if you build your own Docker containers, you can add this to your RUN line that will pull in all dependencies:
      RUN --mount=type=secret,id=gitlab,uid=1000,dst=/data/auth.json

    Hope this helps.

  • Posts: 516 πŸ§‘πŸ»β€πŸš€ - Cadet

    Hi Thomas .. where can I run (3)

  • Posts: 516 πŸ§‘πŸ»β€πŸš€ - Cadet

    on my local host? or should I add it to the sdk config somehow?

  • Posts: 232 πŸ§‘πŸ»β€πŸš€ - Cadet
    edited November 2021

    For example from within the docker/sdk. You only need to do this once after cloning the project (in fact every project member will need to do 2 and 3 exactly once, so adding this to your README will be good for sure).

    docker/sdk cli composer ...

  • Posts: 516 πŸ§‘πŸ»β€πŸš€ - Cadet

    oh I see thanks

Welcome!

It looks like you're new here. Sign in or register to get started.