mirror of
https://github.com/webfactory/ssh-agent.git
synced 2024-11-21 16:50:50 +00:00
Explain how to use docker/build-push-action
with deployment-key configs (#133)
This PR adds a recipe for using `docker/build-push-action` with multiple Deploy Keys (#78) to the docs.
This commit is contained in:
parent
2c78a1c5d1
commit
b19b28d091
1 changed files with 31 additions and 1 deletions
32
README.md
32
README.md
|
@ -114,7 +114,7 @@ If you are using this action on container-based workflows, make sure the contain
|
||||||
|
|
||||||
If you are using the `docker/build-push-action`, and would like to pass the SSH key, you can do so by adding the following config to pass the socket file through:
|
If you are using the `docker/build-push-action`, and would like to pass the SSH key, you can do so by adding the following config to pass the socket file through:
|
||||||
|
|
||||||
```
|
```yml
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
|
@ -123,6 +123,36 @@ If you are using the `docker/build-push-action`, and would like to pass the SSH
|
||||||
default=${{ env.SSH_AUTH_SOCK }}
|
default=${{ env.SSH_AUTH_SOCK }}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Using the `docker/build-push-action` Action together with multiple Deploy Keys
|
||||||
|
|
||||||
|
If you use the `docker/build-push-action` and want to use multiple GitHub deploy keys, you need to copy the git and ssh configuration to the container during the build. Otherwise, the Docker build process would still not know how to handle multiple deploy keys. Even if the ssh agent was set up correctly on the runner.
|
||||||
|
|
||||||
|
This requires an additional step in the actions workflow and two additional lines in the Dockerfile.
|
||||||
|
|
||||||
|
Workflow:
|
||||||
|
```yml
|
||||||
|
- name: Prepare git and ssh config for build context
|
||||||
|
run: |
|
||||||
|
mkdir root-config
|
||||||
|
cp -r ~/.gitconfig ~/.ssh root-config/
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
id: docker_build
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
ssh: |
|
||||||
|
default=${{ env.SSH_AUTH_SOCK }}
|
||||||
|
```
|
||||||
|
|
||||||
|
Dockerfile:
|
||||||
|
```Dockerfile
|
||||||
|
COPY root-config /root/
|
||||||
|
RUN sed 's|/home/runner|/root|g' -i.bak /root/.ssh/config
|
||||||
|
```
|
||||||
|
|
||||||
|
Have in mind that the Dockerfile now contains customized git and ssh configurations. If you don't want that in your final image, use multi-stage builds.
|
||||||
|
|
||||||
|
|
||||||
### Cargo's (Rust) Private Dependencies on Windows
|
### Cargo's (Rust) Private Dependencies on Windows
|
||||||
|
|
||||||
If you are using private repositories in your dependencies like this:
|
If you are using private repositories in your dependencies like this:
|
||||||
|
|
Loading…
Reference in a new issue