Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,348 for BuildX (0.14 sec)

  1. prow/buildx-create

    fi
    
    export DOCKER_CLI_EXPERIMENTAL=enabled
    if ! docker buildx ls | grep -q container-builder; then
      docker buildx create --driver-opt network=host,image=gcr.io/istio-testing/buildkit:v0.11.0 --name container-builder --buildkitd-flags="--debug"
      # Pre-warm the builder. If it fails, fetch logs, but continue
      docker buildx inspect --bootstrap container-builder || docker logs buildx_buildkit_container-builder0 || true
    fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 21:24:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. docker-buildx.sh

    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:latest" \
    	-t "quay.io/minio/minio:latest" \
    	-t "minio/minio:${release}" \
    	-t "quay.io/minio/minio:${release}" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release .
    
    docker buildx prune -f
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r15/CombiningCommandLineArgumentsCrossVersionSpec.groovy

    class CombiningCommandLineArgumentsCrossVersionSpec extends ToolingApiSpecification {
    
        @Issue("GRADLE-2635")
        def "can configure build file name and logging"() {
            file('buildX.gradle') << "logger.info('info message')"
    
            when:
            def out = withBuild { it.withArguments('-b', 'buildX.gradle', '-i') }.standardOutput
    
            then:
            out.contains('info message')
        }
    
        //below was working as expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. tools/docker-builder/docker.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    // RunDocker builds docker images using the `docker buildx bake` commands. Buildx is the
    // next-generation docker builder, and `bake` is an important part of that which allows us to
    // construct a big build plan which docker can execute in parallel. This provides order of magnitude
    // improves over a naive `docker build` flow when building many images.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. tools/build-base-images.sh

    DOCKER_TARGETS="${DOCKER_TARGETS:-${defaultTargets}}"
    
    # For multi architecture building:
    # See https://medium.com/@artur.klauser/building-multi-architecture-docker-images-with-buildx-27d80f7e2408 for more info
    # * docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
    # * docker buildx create --name multi-arch --platform linux/amd64,linux/arm64 --use
    # * export DOCKER_ARCHITECTURES="linux/amd64,linux/arm64"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. cluster/images/etcd/cloudbuild.yaml

          - IMAGE=gcr.io/$PROJECT_ID/etcd
          - BUILD_IMAGE=debian-build
          - TMPDIR=/workspace
          - HOME=/root  # for docker buildx
        args:
          - '-c'
          - |
            gcloud auth configure-docker \
            && docker buildx create --name img-builder --use \
            && docker buildx inspect --bootstrap \
            && docker run --rm --privileged linuxkit/binfmt:4ea3b9b0938cbd19834c096aa31ff475cc75d281 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
  7. src/cmd/go/internal/web/http.go

    		case "http":
    			if security == SecureOnly {
    				if cfg.BuildX {
    					fmt.Fprintf(os.Stderr, "# get %s: insecure\n", url.Redacted())
    				}
    				return nil, fmt.Errorf("insecure URL: %s", url.Redacted())
    			}
    		case "":
    			if security != Insecure {
    				panic("should have returned after HTTPS failure")
    			}
    		default:
    			if cfg.BuildX {
    				fmt.Fprintf(os.Stderr, "# get %s: unsupported\n", url.Redacted())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. samples/builder/README.md

    ## Building for testing
    
    To build all images and push them:
    
    ```bash
    docker buildx bake --push
    ```
    
    This will push to `localhost:5000` by default, which you can override with `HUB=localhost:5000`.
    It will also build `linux/amd64,linux/arm64` which you can override with `PLATFORMS`.
    
    You can also build a set of images instead of all of them:
    
    ```bash
    docker buildx bake --push examples-helloworld-v1 tcp-echo-server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  9. .github/workflows/go-fips.yml

        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
    
          - name: Set up Docker Buildx
            uses: docker/setup-buildx-action@v2
    
          - name: Setup dockerfile for build test
            run: |
              GO_VERSION=$(go version | cut -d ' ' -f 3 | sed 's/go//')
              echo Detected go version $GO_VERSION
              cat > Dockerfile.fips.test <<EOF
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. .github/workflows/sigbuild-docker-branch.yml

            id: vars
          -
            name: Build and push
            id: docker_build
            uses: docker/build-push-action@c56af957549030174b10d6867f20e78cfd7debc5 # v3.2.0
            with:
              push: true
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
              target: devel
              build-args: |
                PYTHON_VERSION=${{ matrix.python-version }}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top