Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for dockerUp (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [source,kotlin]
    ----
    tasks {
        register("dockerTest") {
            dependsOn("dockerUp")     // dependsOn createContainer mustRunAfter removeContainer
            finalizedBy("dockerStop") // dependsOn removeContainer
        }
    
        register("dockerUp") {
            dependsOn("createContainer")
        }
    
        register("dockerStop") {
            dependsOn("removeContainer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. docs/ru/docs/deployment/docker.md

    ## Образы контейнеров
    
    Docker является одним оз основных инструментов для создания **образов** и  **контейнеров** и управления ими.
    
    Существует общедоступный <a href="https://hub.docker.com/" class="external-link" target="_blank">Docker Hub</a> с подготовленными **официальными образами** многих инструментов, окружений, баз данных и приложений.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

        tee /etc/apt/sources.list.d/docker.list > /dev/null
    
      apt-get update
      apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
      groupadd docker
      usermod -aG docker "$USER"
    
      if ! grep -q "cri-containerd" "/lib/systemd/system/docker.service"; then
        sed -i "s/ExecStart=\(.*\)/ExecStart=\1 --cri-containerd/" /lib/systemd/system/docker.service
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    nce:v1.31.0-alpha.1](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance) | [amd64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-amd64), [arm64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-arm64), [ppc64le](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-ppc64le),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string cniConfFileName = 8;
    
      // The directory path within the cluster node's filesystem where network namespaces are located.
      // Defaults to '/var/run/netns', in minikube/docker/others can be '/var/run/docker/netns'.
      string cniNetnsDir = 31;
    
      // List of namespaces that should be ignored by the CNI plugin.
      repeated string excludeNamespaces = 9;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. go.sum

    github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
    github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
    github.com/docker/docker v20.10.27+incompatible h1:Id/ZooynV4ZlD6xX20RCd3SR0Ikn7r4QZDa2ECK2TgA=
    github.com/docker/docker v20.10.27+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    #
    # The original tag is derived from the log file's location.
    # For example a Docker container's logs might be in the directory:
    #  /var/lib/docker/containers/997599971ee6366d4a5920d25b79286ad45ff37a74494f262e3bc98d909d0a7b
    # and in the file:
    #  997599971ee6366d4a5920d25b79286ad45ff37a74494f262e3bc98d909d0a7b-json.log
    # where 997599971ee6... is the Docker ID of the running container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. .bazelrc

    # Linux builds. Instructions are available in the official documentation:
    # https://www.tensorflow.org/install/source#install_clang_recommended_linux_only
    # Another good option is to use our Docker containers to build and test TF:
    # https://github.com/tensorflow/tensorflow/tree/master/tensorflow/tools/tf_sig_build_dockerfiles.
    build:unsupported_cpu_linux --config=avx_linux
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server_test.go

    }
    
    func TestHealthCheck(t *testing.T) {
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    	fw.fakeKubelet.hostnameFunc = func() string {
    		return "127.0.0.1"
    	}
    
    	// Test with correct hostname, Docker version
    	assertHealthIsOk(t, fw.testHTTPServer.URL+"/healthz")
    
    	// Test with incorrect hostname
    	fw.fakeKubelet.hostnameFunc = func() string {
    		return "fake"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. go.sum

    github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0=
    github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=
    github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
    github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
Back to top