/external/mesa3d/.gitlab-ci/windows/ |
D | mesa_container.ps1 | 2 # Docker directly as we don't have buildah/podman/skopeo available under 3 # Windows, nor can we execute Docker-in-Docker 12 docker --config "windows-docker.conf" login -u "$registry_username" -p "$registry_password" "$regis… 14 Write-Host "docker login failed to $registry_uri" 19 docker --config "windows-docker.conf" pull "$registry_user_image" 22 docker --config "windows-docker.conf" logout "$registry_uri" 27 docker --config "windows-docker.conf" pull "$registry_central_image" 30 docker --config "windows-docker.conf" tag "$registry_central_image" "$registry_user_image" 31 docker --config "windows-docker.conf" push "$registry_user_image" 33 docker --config "windows-docker.conf" logout "$registry_uri" [all …]
|
/external/skia/docker/ |
D | README.md | 1 # Docker chapter 3 Docker files for building different Skia targets. 9 There is a continuous process that builds this docker image, but if you 12 docker build -t skia-release ./docker/skia-release/ 13 docker tag skia-release gcr.io/skia-public/skia-release:prod 14 docker push gcr.io/skia-public/skia-release:prod 21 There is a continuous process that builds this docker image, but if you 24 docker build -t skia-wasm-release ./docker/skia-wasm-release/ 25 docker tag skia-wasm-release gcr.io/skia-public/skia-wasm-release:prod 26 docker push gcr.io/skia-public/skia-wasm-release:prod [all …]
|
/external/llvm-project/llvm/docs/ |
D | Docker.rst | 7 You can find a number of sources to build docker images with LLVM components in 8 ``llvm/utils/docker``. They can be used by anyone who wants to build the docker 14 to fill out in order to produce Dockerfiles for a new docker image. 18 Docker images provide a way to produce binary distributions of 19 software inside a controlled environment. Having Dockerfiles to builds docker images 23 Docker basics 25 If you've never heard about Docker before, you might find this section helpful 27 `Docker <https://www.docker.com/>`_ is a popular solution for running programs in 32 A single active instance of dockerized environment is called a *docker 34 A snapshot of a docker container filesystem is called a *docker image*. [all …]
|
/external/python/cryptography/ |
D | .travis.yml | 64 services: docker 65 env: TOXENV=py27 DOCKER=pyca/cryptography-runner-centos7 67 services: docker 68 env: TOXENV=py27 DOCKER=pyca/cryptography-runner-wheezy 70 services: docker 71 env: TOXENV=py27 DOCKER=pyca/cryptography-runner-jessie 73 services: docker 74 env: TOXENV=py34 DOCKER=pyca/cryptography-runner-jessie 76 services: docker 77 env: TOXENV=py27 DOCKER=pyca/cryptography-runner-stretch [all …]
|
/external/skqp/docker/ |
D | README.md | 1 Docker chapter 4 Docker files for building different Skia targets. 11 There is a continuous process that builds this docker image, but if you 14 docker build -t skia-release ./docker/skia-release/ 15 docker tag skia-release gcr.io/skia-public/skia-release:prod 16 docker push gcr.io/skia-public/skia-release:prod 24 There is a continuous process that builds this docker image, but if you 27 docker build -t skia-wasm-release ./docker/skia-wasm-release/ 28 docker tag skia-wasm-release gcr.io/skia-public/skia-wasm-release:prod 29 docker push gcr.io/skia-public/skia-wasm-release:prod [all …]
|
/external/python/ipaddress/ |
D | Makefile | 27 docker-test-all: docker-test-2.6 docker-test-2.7 docker-test-3.2 docker-test-3.3 29 docker-test-2.6: 30 docker build -t ipaddress-python2.6 . -f test-python2.6.Dockerfile 32 docker-test-2.7: 33 docker build -t ipaddress-python2.7 . -f test-python2.7.Dockerfile 35 docker-test-3.2: 36 docker build -t ipaddress-python3.2 . -f test-python3.2.Dockerfile 38 docker-test-3.3: 39 docker build -t ipaddress-python3.3 . -f test-python3.3.Dockerfile 44 .PHONY: default test clean pypi lint docker-test-all docker-test-2.6 docker-test-2.7 docker-test-3.…
|
/external/tensorflow/tensorflow/tools/dockerfiles/ |
D | README.md | 5 [TensorFlow's Docker Hub](https://hub.docker.com/r/tensorflow/tensorflow). 18 $ docker build -f ./dockerfiles/cpu.Dockerfile -t tf . 26 After building the image with the tag `tf` (for example), use `docker run` to 29 Note for new Docker users: the `-v` and `-u` flags share directories and 30 permissions between the Docker container and your machine. Without `-v`, your 34 [Docker run documentation](https://docs.docker.com/engine/reference/run/) for 42 $ docker run -u $(id -u):$(id -g) -v $(pwd):/my-devel -it tf 45 # 1) On Docker versions earlier than 19.03 (set up nvidia-docker2 first) 46 $ docker run --runtime=nvidia -u $(id -u):$(id -g) -v $(pwd):/my-devel -it tf 48 # 2) On Docker versions including and after 19.03 (with nvidia-container-toolkit) [all …]
|
/external/pigweed/docker/ |
D | docs.rst | 2 docker title 7 assumption is poor when running tests with docker. To help out teams using 8 docker for automated testing, the Pigweed team has a publicly-available docker 10 image is in ``docker/tag`` under the Pigweed checkout. 12 To build your own docker image, start with ``docker/Dockerfile.cache`` and 13 run ``docker build --file docker/Dockerfile.cache .`` from the root of your 16 To use the publicly-available docker image, run 17 ``docker build --file docker/Dockerfile.run --build-arg from=$(cat docker/tag) .`` 19 ``. ./bootstrap.sh`` within the docker image, but it should complete much 20 faster than on a vanilla docker image.
|
/external/igt-gpu-tools/ |
D | .gitlab-ci.yml | 217 image: docker:stable 224 - docker:dind 226 DOCKER_HOST: tcp://docker:2375 229 - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY 230 …- docker build -t $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-minimal -t igt-debian-minimal -f Docker… 231 - docker build -t $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian -f Dockerfile.debian . 232 - docker push $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian-minimal 233 - docker push $CI_REGISTRY/$CI_PROJECT_PATH/igt-debian 237 image: docker:stable 243 - docker:dind [all …]
|
/external/tensorflow/tensorflow/lite/tools/pip_package/ |
D | Makefile | 18 docker-image \ 19 docker-shell \ 20 docker-build \ 24 @echo "make docker-image -- build docker image" 25 @echo "make docker-shell -- run shell inside the docker image" 26 @echo "make docker-build -- build wheel and deb inside the docker image" 29 docker-image: 30 docker build -t $(TAG_IMAGE) --build-arg IMAGE=$(BASE_IMAGE) . 32 docker-shell: docker-image 33 docker run --rm --interactive --tty \ [all …]
|
/external/crosvm/ci/ |
D | Makefile | 5 # Builds docker images for the crosvm builders. 9 # Images are always built with docker (since buildkit is a lot faster than 18 DOCKER ?= docker macro 23 $(DOCKER) push $(TAG_BASE)/crosvm_base:$(TAG_VERSION) 24 $(DOCKER) push $(TAG_BASE)/crosvm_builder:$(TAG_VERSION) 25 $(DOCKER) push $(TAG_BASE)/crosvm_aarch64_builder:$(TAG_VERSION) 26 $(DOCKER) push $(TAG_BASE)/crosvm_test_vm_amd64:$(TAG_VERSION) 27 $(DOCKER) push $(TAG_BASE)/crosvm_test_vm_arm64:$(TAG_VERSION) 30 cd $@ && $(DOCKER) build -t $(TAG_BASE)/$@:$(TAG_VERSION) . 33 cd $@ && $(DOCKER) build \ [all …]
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/dockerize/ |
D | build_and_run_docker.sh | 16 # Builds docker image and runs a command under it. 29 # DOCKER_RUN_SCRIPT - Script to run under docker (relative to grpc repo root) 30 # OUTPUT_DIR - Directory that will be copied from inside docker after finishing. 33 # $@ - Extra args to pass to docker run 41 time docker pull "$DOCKER_BASE_IMAGE" 47 time docker pull "$DOCKER_IMAGE_NAME" 49 # Make sure docker image has been built. Should be instantaneous if so. 50 docker build -t "$DOCKER_IMAGE_NAME" "$DOCKERFILE_DIR" 53 # Choose random name for docker container 56 # Run command inside docker [all …]
|
D | build_interop_image.sh | 16 # This script is invoked by run_interop_tests.py to build the docker image 24 # TTY_FLAG - optional -t flag to make docker allocate tty 26 # docker run command 40 echo "WARNING: grpc-java not found, it won't be mounted to the docker container." 48 echo "WARNING: grpc-go not found, it won't be mounted to the docker container." 56 echo "WARNING: grpc-dart not found, it won't be mounted to the docker container." 64 echo "WARNING: grpc-node not found, it won't be mounted to the docker container." 72 echo "WARNING: grpc-dotnet not found, it won't be mounted to the docker container." 95 time docker pull "$BASE_IMAGE" 97 # Make sure docker image has been built. Should be instantaneous if so. [all …]
|
/external/grpc-grpc/tools/run_tests/dockerize/ |
D | build_and_run_docker.sh | 16 # Builds docker image and runs a command under it. 27 # DOCKER_RUN_SCRIPT - Script to run under docker (relative to grpc repo root) 28 # OUTPUT_DIR - Directory that will be copied from inside docker after finishing. 31 # $@ - Extra args to pass to docker run 39 time docker pull "$DOCKER_BASE_IMAGE" 45 time docker pull "$DOCKER_IMAGE_NAME" 47 # Make sure docker image has been built. Should be instantaneous if so. 48 docker build -t "$DOCKER_IMAGE_NAME" "$DOCKERFILE_DIR" 51 # Choose random name for docker container 54 # Run command inside docker [all …]
|
D | build_interop_image.sh | 16 # This script is invoked by run_interop_tests.py to build the docker image 24 # TTY_FLAG - optional -t flag to make docker allocate tty 26 # docker run command 40 echo "WARNING: grpc-java not found, it won't be mounted to the docker container." 48 echo "WARNING: grpc-go not found, it won't be mounted to the docker container." 56 echo "WARNING: grpc-dart not found, it won't be mounted to the docker container." 64 echo "WARNING: grpc-node not found, it won't be mounted to the docker container." 89 time docker pull "$BASE_IMAGE" 91 # Make sure docker image has been built. Should be instantaneous if so. 92 docker build -t "$BASE_IMAGE" --force-rm=true "tools/dockerfile/interoptest/$BASE_NAME" || exit $? [all …]
|
/external/perfetto/infra/ci/worker/ |
D | gce-startup-script.sh | 43 docker pull eu.gcr.io/perfetto-ci/worker 44 docker pull eu.gcr.io/perfetto-ci/sandbox 48 docker network rm sandbox 2>/dev/null || true # Handles the reboot case. 49 docker network create sandbox -o com.docker.network.bridge.name=sandbox 50 sudo iptables -I DOCKER-USER -i sandbox -d 169.254.0.0/16 -j REJECT 52 # These args will be appended to the docker run invocation for the sandbox. 55 # The worker_main_loop.py script creates one docker sandbox container for 56 # each job invocation. It needs to talk back to the host docker to do so. 61 # We manually mount a tmpfs mount ourselves because Docker doesn't allow to 69 docker rm -f worker-$i 2>/dev/null || true [all …]
|
/external/flatbuffers/.travis/ |
D | build-and-run-docker-test-containers.sh | 18 docker build -t build_cpp_image -f tests/docker/Dockerfile.testing.cpp.debian_buster . 20 cpp_test_args="--cap-add SYS_PTRACE build_cpp_image sh ./tests/docker/cpp_test.run.sh Debug" 21 docker run --rm $cpp_test_args 22 docker run --rm --env CC=/usr/bin/clang --env CXX=/usr/bin/clang++ $cpp_test_args 24 docker run --name flatc_container build_cpp_image sh ./tests/docker/build_flatc.run.sh Debug 26 docker cp flatc_container:/flatbuffers/flatc flatc_debian_stretch 28 for f in $(ls tests/docker/languages | sort) 30 …# docker pull sometimes fails for unknown reasons, probably travisci-related. this retries the pul… 31 REQUIRED_BASE_IMAGE=$(cat tests/docker/languages/${f} | head -n 1 | awk ' { print $2 } ') 37 docker pull $REQUIRED_BASE_IMAGE && break [all …]
|
/external/skia/infra/wasm-common/docker/ |
D | README.md | 1 Docker chapter 4 Docker files to ease working with PathKit and CanvasKit. 12 This image tracks the official emscripten Docker image and installs 19 docker build -t emsdk-base ./emsdk-base/ 21 docker run -it emsdk-base /bin/bash 23 …docker run -v $SKIA_ROOT:/SRC -v $SKIA_ROOT/out/dockerpathkit:/OUT emsdk-base /SRC/infra/pathkit/b… 40 using the default Docker settings. To be safe, it is recommended to run the container 45 docker build -t karma-chrome-tests ./karma-chrome-tests/ 47 docker run -it --shm-size=2gb karma-chrome-tests /bin/bash 49 …docker run --shm-size=2gb -v $SKIA_ROOT:/SRC karma-chrome-tests karma start /SRC/infra/pathkit/kar… [all …]
|
/external/skia/infra/skqp/docker/ |
D | README.md | 1 Docker chapter 4 Docker files to ease working with the Android SDK/NDK and SKQP. 17 docker build -t android-skqp ./android-skqp/ 21 docker tag android-skqp gcr.io/skia-public/android-skqp:$ANDROID_SDK_VERSION 22 docker push gcr.io/skia-public/android-skqp:$ANDROID_SDK_VERSION 27 docker build -t android-skqp ./android-skqp/ 30 docker run --privileged -d --name android_em \ 37 docker exec -it android_em /bin/bash 40 docker run -it --rm -w /SRC/infra/skqp \ 45 # original docker run) [all …]
|
/external/skqp/infra/skqp/docker/ |
D | README.md | 1 Docker chapter 4 Docker files to ease working with the Android SDK/NDK and SKQP. 17 docker build -t android-skqp ./android-skqp/ 21 docker tag android-skqp gcr.io/skia-public/android-skqp:$ANDROID_SDK_VERSION 22 docker push gcr.io/skia-public/android-skqp:$ANDROID_SDK_VERSION 27 docker build -t android-skqp ./android-skqp/ 30 docker run --privileged -d --name android_em \ 37 docker exec -it android_em /bin/bash 40 docker run -it --rm -w /SRC/infra/skqp \ 45 # original docker run) [all …]
|
/external/skqp/infra/lottiecap/docker/ |
D | README.md | 1 Docker chapter 4 Docker files to handle Gold + lottie-web integration 19 docker build -t lottie-web-puppeteer ./lottie-web-puppeteer/ 21 docker tag lottie-web-puppeteer gcr.io/skia-public/lottie-web-puppeteer:$LOTTIE_VERSION 22 docker push gcr.io/skia-public/lottie-web-puppeteer:$LOTTIE_VERSION 25 using the default Docker settings. To be safe, it is recommended to run the container 30 docker build -t lottie-web-puppeteer ./lottie-web-puppeteer/ 32 docker run -it --shm-size=2gb lottie-web-puppeteer /bin/bash 35 …docker run -it -v $SKIA_ROOT:/SRC -v ~/lottie-samples:/LOTTIE_FILES -v $LOTTIE_ROOT/build/player:/… 50 make gold-docker-image [all …]
|
/external/skia/infra/lottiecap/docker/ |
D | README.md | 1 Docker chapter 4 Docker files to handle Gold + lottie-web integration 19 docker build -t lottie-web-puppeteer ./lottie-web-puppeteer/ 21 docker tag lottie-web-puppeteer gcr.io/skia-public/lottie-web-puppeteer:$LOTTIE_VERSION 22 docker push gcr.io/skia-public/lottie-web-puppeteer:$LOTTIE_VERSION 25 using the default Docker settings. To be safe, it is recommended to run the container 30 docker build -t lottie-web-puppeteer ./lottie-web-puppeteer/ 32 docker run -it --shm-size=2gb lottie-web-puppeteer /bin/bash 35 …docker run -it -v $SKIA_ROOT:/SRC -v ~/lottie-samples:/LOTTIE_FILES -v $LOTTIE_ROOT/build/player:/… 50 make gold-docker-image [all …]
|
/external/skqp/infra/pathkit/docker/ |
D | README.md | 1 Docker chapter 4 Docker files to ease working with PathKit and WASM. 22 docker build -t emsdk-base ./emsdk-base/ 24 docker run -it emsdk-release /bin/bash 26 …docker run -v $SKIA_ROOT:/SRC -v $SKIA_ROOT/out/dockerpathkit:/OUT emsdk-base /SRC/infra/pathkit/b… 43 using the default Docker settings. To be safe, it is recommended to run the container 48 docker build -t karma-chrome-tests ./karma-chrome-tests/ 50 docker run -it --shm-size=2gb karma-chrome-tests /bin/bash 52 …docker run --shm-size=2gb -v $SKIA_ROOT:/SRC karma-chrome-tests karma start /SRC/infra/pathkit/kar… 70 using the default Docker settings. To be safe, it is recommended to run the container [all …]
|
/external/libcxx/utils/docker/ |
D | build_docker_image.sh | 2 #===- libcxx/utils/docker/build_docker_image.sh ----------------------------===// 23 Docker-specific: 25 -d|--docker-repository docker repository for the image 26 -t|--docker-tag docker tag for the image 28 Required options: --source and --docker-repository. 32 will produce two docker images: 53 -d|--docker-repository) 58 -t|--docker-tag) 71 command -v docker >/dev/null || 73 echo "Docker binary cannot be found. Please install Docker to use this script." [all …]
|
/external/rust/crates/grpcio-sys/grpc/tools/interop_matrix/testcases/ |
D | cxx__v1.31.1 | 5 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 6 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 7 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 8 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 9 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 10 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 11 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 12 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 13 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 14 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… [all …]
|