docker buildx not working with default settings #521
-
I'm using the |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
docker/setup-buildx-action#16 give it a context |
Beta Was this translation helpful? Give feedback.
-
@callum-tait-pbx just giving it a context didn't work for me. What ended up working was adding these steps: - name: setup docker context for buildx
id: buildx-context
run: |
docker context create builders
- name: setup docker buildx
uses: docker/setup-buildx-action@v1
with:
endpoint: builders |
Beta Was this translation helpful? Give feedback.
-
@toonvanstrijp Thanks for sharing! Probably we'd better enhancing README to include various tips for setting up common things? |
Beta Was this translation helpful? Give feedback.
-
Let me move this to Discussion for easy reference. |
Beta Was this translation helpful? Give feedback.
@callum-tait-pbx just giving it a context didn't work for me. What ended up working was adding these steps: