Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/_posts/platform/deployment/buildpacks/2000-01-01-multi.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,23 @@ You have to use the syntax `URL#branchname` in your `.buildpacks` file:
https://github.com/Scalingo/java-buildpack#javaonly
```

### Can I Use Private Buildpacks?

Yes.

If you need private buildpacks in `.buildpacks`, add the [SSH private key buildpack]({% post_url platform/deployment/buildpacks/2000-01-01-ssh-key %}) first, then list your private buildpacks with SSH URLs:

```text
https://github.com/Scalingo/ssh-private-key-buildpack.git
git@github.com:my-org/private-buildpack.git
git@github.com:my-org/another-private-buildpack.git#main
https://github.com/Scalingo/nodejs-buildpack.git
```

{% note %}
When using the SSH private key buildpack, prefer SSH Git URLs (`git@...`) for private repositories.
{% endnote %}

### Does the Buildpack Order Matter?

Yes.
Expand Down