-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use docker buildx org for installing buildx and qemu
- Loading branch information
jsirianni
committed
Aug 25, 2021
1 parent
002c799
commit 3be8209
Showing
1 changed file
with
1 addition
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ orbs: | |
gcp-cli: circleci/[email protected] | ||
codecov: codecov/[email protected] | ||
pr-comment: benjlevesque/[email protected] | ||
docker-buildx: sensu/[email protected] | ||
|
||
executors: | ||
golang: | ||
|
@@ -46,9 +47,6 @@ jobs: | |
- run: | ||
name: "Configure Docker multi arch builds" | ||
command: | | ||
mkdir -p ~/.docker/cli-plugins | ||
curl -fL https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx | ||
chmod a+x ~/.docker/cli-plugins/docker-buildx | ||
docker context create tls-environment | ||
docker buildx create --name stanza --use tls-environment | ||
docker buildx inspect --bootstrap | ||
|
@@ -115,9 +113,6 @@ jobs: | |
- run: | ||
name: "Configure Docker multi arch builds" | ||
command: | | ||
mkdir -p ~/.docker/cli-plugins | ||
curl -fL https://github.com/docker/buildx/releases/download/v0.6.1/buildx-v0.6.1.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx | ||
chmod a+x ~/.docker/cli-plugins/docker-buildx | ||
docker context create tls-environment | ||
docker buildx create --name stanza --use tls-environment | ||
docker buildx inspect --bootstrap | ||
|