Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 796 for dockerUp (0.21 sec)

  1. .github/workflows/multipart/migrate.sh

    cd .github/workflows/multipart/
    
    function cleanup() {
    	docker-compose -f docker-compose-site1.yaml rm -s -f || true
    	docker-compose -f docker-compose-site2.yaml rm -s -f || true
    	for volume in $(docker volume ls -q | grep minio); do
    		docker volume rm ${volume} || true
    	done
    
    	docker system prune -f || true
    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    cleanup
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-ns-override
      namespace: ns-override
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.1-distroless
        name: istio-proxy
    ---
    # Pod with ProxyConfig for workload-override namespace should not get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/DockerPluginSmokeTest.groovy

        @Issue('https://plugins.gradle.org/plugin/com.bmuschko.docker-java-application')
        def 'docker plugin'() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                    id 'application'
                    id "com.bmuschko.docker-java-application" version "${TestedVersions.docker}"
                }
    
                application.mainClass = 'org.gradle.JettyMain'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. .github/workflows/go-fips.yml

            os: [ubuntu-latest]
        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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. build/pause/Makefile

    all: all-container-docker
    
    # NOTE(claudiub): A non-default builder instance is needed in order to build Windows images.
    all-push: all-container-registry push-manifest
    
    push-manifest: SHELL:=/bin/bash
    push-manifest:
    	docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(IMAGE):$(TAG)\-&~g")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top