Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 796 for dockerUp (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. hack/pin-dependency.sh

      echo "Usage:"
      echo "  hack/pin-dependency.sh \$MODULE[=\$REPLACEMENT] \$SHA-OR-TAG"
      echo ""
      echo "Examples:"
      echo "  hack/pin-dependency.sh github.com/docker/docker 501cb131a7b7"
      echo "  hack/pin-dependency.sh github.com/docker/docker=github.com/johndoe/docker my-experimental-branch"
      echo ""
      echo "Replacing with a different repository is useful for testing but"
      echo "the result should never be merged into Kubernetes!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. 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)
  7. docs/de/docs/project-generation.md

    ### Full Stack FastAPI PostgreSQL – Funktionen
    
    * Vollständige **Docker**-Integration (Docker-basiert).
    * Docker-Schwarmmodus-Deployment.
    * **Docker Compose**-Integration und Optimierung für die lokale Entwicklung.
    * **Produktionsbereit** Python-Webserver, verwendet Uvicorn und Gunicorn.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. pkg/credentialprovider/config.go

    	maxReadLength = 10 * 1 << 20 // 10MB
    )
    
    // DockerConfigJSON represents ~/.docker/config.json file info
    // see https://github.com/docker/docker/pull/12009
    type DockerConfigJSON struct {
    	Auths DockerConfig `json:"auths"`
    	// +optional
    	HTTPHeaders map[string]string `json:"HttpHeaders,omitempty"`
    }
    
    // DockerConfig represents the config file used by the docker CLI.
    // This config that represents the credentials that should be used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. pkg/credentialprovider/keyring.go

    	}
    
    	if len(parts) == 1 {
    		// e.g. library/ubuntu
    		return true
    	}
    
    	if parts[0] == "docker.io" || parts[0] == "index.docker.io" {
    		// resolve docker.io/image and index.docker.io/image as default registry
    		return true
    	}
    
    	// From: http://blog.docker.com/2013/07/how-to-use-your-own-registry/
    	// Docker looks for either a “.” (domain separator) or “:” (port separator)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  10. ci/official/utilities/cleanup_docker.sh

    cat <<EOF
    IMPORTANT: These tests ran under docker. This script does not clean up the
    container for you! You can delete the container with:
    
    $ docker rm -f tf
    
    You can also execute more commands within the container with e.g.:
    
    $ docker exec tf bazel clean
    $ docker exec -it tf bash
    EOF
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:26:29 UTC 2023
    - 998 bytes
    - Viewed (0)
Back to top