Skip to content

Commit

Permalink
Set the docker buildx max parallel to 2
Browse files Browse the repository at this point in the history
- helps keep our builds within the machine memory
  • Loading branch information
twk3 committed Jan 17, 2024
1 parent 7b36c22 commit c7c6577
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docker-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
config-inline: |
[worker.oci]
max-parallelism = 2
- name: Docker meta
id: meta
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
config-inline: |
[worker.oci]
max-parallelism = 2
- name: Docker meta
id: meta
Expand Down

0 comments on commit c7c6577

Please sign in to comment.