Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,160 for Mocker (0.13 sec)

  1. cluster/addons/addon-manager/Makefile

    endif
    
    	docker build --pull -t $(IMAGE)-$(ARCH):$(VERSION) $(TEMP_DIR) --build-arg BASEIMAGE=$(BASEIMAGE)
    
    push: build
    	docker push $(IMAGE)-$(ARCH):$(VERSION)
    ifeq ($(ARCH),amd64)
    	# Backward compatibility. TODO: deprecate this image tag
    	docker rmi $(IMAGE):$(VERSION) 2>/dev/null || true
    	docker tag $(IMAGE)-$(ARCH):$(VERSION) $(IMAGE):$(VERSION)
    	docker push $(IMAGE):$(VERSION)
    endif
    
    test:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. Dockerfile.dev

    FROM minio/minio:latest
    
    ENV PATH=/opt/bin:$PATH
    
    COPY ./minio /opt/bin/minio
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
    
    VOLUME ["/data"]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 02 16:54:36 UTC 2022
    - 227 bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/build.sh

        gcloud auth configure-docker
        docker push "$IMAGE"
        gcloud auth configure-docker us-central1-docker.pkg.dev
        docker push "$AR_IMAGE"
      fi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/injection-image-distroless.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old
      namespace: enabled-namespace
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.0
        name: istio-proxy
    ---
    # details-v1-pod-new is up-to-date and should not get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. prow/buildx-create

      docker buildx inspect --bootstrap container-builder || docker logs buildx_buildkit_container-builder0 || true
    fi
    docker buildx use container-builder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 21:24:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tools/build-base-images.sh

    TAG="${TAG:?specify a tag}"
    defaultTargets="$(< "${ROOT}/tools/docker.yaml" toJson | toJson | jq '[.images[] | select(.base) | .name] | join(",")' -r)"
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/util/parsers/parsers_test.go

    import (
    	"strings"
    	"testing"
    )
    
    // Based on Docker test case removed in:
    // https://github.com/docker/docker/commit/4352da7803d182a6013a5238ce20a7c749db979a
    func TestParseImageName(t *testing.T) {
    	testCases := []struct {
    		Input         string
    		Repo          string
    		Tag           string
    		Digest        string
    		expectedError string
    	}{
    		{Input: "root", Repo: "docker.io/library/root", Tag: "latest"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 01:53:43 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. tools/docker-builder/crane.go

    	testenv "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/tracing"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/tools/docker-builder/builder"
    	"istio.io/istio/tools/docker-builder/dockerfile"
    )
    
    // RunCrane builds docker images using go-containerregistry, rather than relying on Docker. This
    // works by parsing each Dockerfile and determining the resulting image config (labels, entrypoint,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. build/lib/release.sh

      if [[ -n "${save_dir}" ]]; then
        "${DOCKER[@]}" save "${conformance_tag}" > "${save_dir}/conformance-${arch}.tar"
      fi
      kube::log::status "Deleting conformance image ${conformance_tag}"
      "${DOCKER[@]}" rmi "${conformance_tag}" &>/dev/null || true
    }
    
    # This builds all the release docker images (One docker image per binary)
    # Args:
    #  $1 - binary_dir, the directory to save the tared images to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. LICENSES/vendor/github.com/google/cadvisor/third_party/containerd/NOTICE

    Docker
    Copyright 2012-2015 Docker, Inc.
    
    This product includes software developed at Docker, Inc. (https://www.docker.com).
    
    The following is courtesy of our legal counsel:
    
    
    Use and transfer of Docker may be subject to certain restrictions by the
    United States and other governments.
    It is your responsibility to ensure that your use and/or transfer does not
    violate applicable laws.
    
    For more information, please see https://www.bis.doc.gov
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 03 16:47:06 UTC 2022
    - 519 bytes
    - Viewed (0)
Back to top