Skip to content

Commit

Permalink
fix: configure Docker Buildx to use insecure HTTP for cache registry
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-hanheide committed Jan 8, 2025
1 parent 9cf3769 commit 59084a2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docker-build-opengl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,12 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

with:
buildkitd-config-inline: |
[registry."cache"]
http = true
insecure = true
- name: "image name from repo name"
id: docker_image_name
run: echo "docker_image=${{ github.repository }}" | tr '[:upper:]' '[:lower:]' |sed 's/[^0-9,a-z,A-Z,=,_,\/]/-/g' >>${GITHUB_OUTPUT}
Expand Down

0 comments on commit 59084a2

Please sign in to comment.