/external/tensorflow/tensorflow/tools/docker/ |
D | README.md | 6 [TensorFlow's official Docker images](https://hub.docker.com/r/tensorflow/tensorflow) 11 # Using TensorFlow via Docker 14 TensorFlow via [Docker](http://www.docker.com/). 16 ## Installing Docker 19 [on the Docker site](https://docs.docker.com/installation/), but we give some 22 * [OSX](https://www.docker.com/products/docker#/mac) 23 * [Ubuntu](https://docs.docker.com/engine/installation/linux/ubuntulinux/) 27 We currently maintain two Docker container images: 35 [Docker Hub](https://hub.docker.com/r/tensorflow/tensorflow/tags/). 42 $ docker run -it -p 8888:8888 tensorflow/tensorflow [all …]
|
D | parameterized_docker_build.sh | 16 # Parameterized build and test for TensorFlow Docker images. 30 # Specifies the branch to checkout for devel docker images 58 # during basic checks on the newly-built docker image. 64 # such as gcr.io or Docker Hub. 93 # A list (array) of docker build args. Will be passed to docker build 134 # Make sure that docker is available on path 135 if [[ -z $(which docker) ]]; then 136 die "ERROR: docker is not available on path" 152 die "ERROR: TF_DOCKER_BUILD_DEVEL_BRANCH is missing for devel docker build" 162 DOCKER_BINARY="docker" [all …]
|
/external/tensorflow/tensorflow/examples/udacity/ |
D | README.md | 6 ## Getting Started with Docker 8 If you are new to Docker, follow 9 [Docker document](https://docs.docker.com/machine/get-started/) to start a 10 docker instance. Kindly read the requirements of Windows and Mac carefully. 12 Running the Docker container from the Google Cloud repository 15 … docker run -p 8888:8888 --name tensorflow-udacity -it gcr.io/tensorflow/udacity-assignments:1.0.0 19 docker start -ai tensorflow-udacity 28 docker-machine ip default 35 docker-machine ip default 46 If you're using a Mac, Docker works by running a VM locally (which [all …]
|
/external/skia/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/swiftshader/third_party/llvm-7.0/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/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/tensorflow/tensorflow/tools/dockerfiles/ |
D | README.md | 5 [Docker Hub](https://hub.docker.com/r/tensorflow/tensorflow). 13 [TensorFlow's official Docker images](https://hub.docker.com/r/tensorflow/tensorflow). 21 $ docker build -f ./dockerfiles/cpu.Dockerfile -t tf . 29 After building the image with the tag `tf` (for example), use `docker run` to 32 Note for new Docker users: the `-v` and `-u` flags share directories and 33 permissions between the Docker container and your machine. Without `-v`, your 37 [Docker run documentation](https://docs.docker.com/engine/reference/run/) for 45 $ docker run -u $(id -u):$(id -g) -v $(pwd):/my-devel -it tf 48 $ docker run --runtime=nvidia -u $(id -u):$(id -g) -v $(pwd):/my-devel -it tf 53 $ docker run --user $(id -u):$(id -g) -p 8888:8888 -v $(PWD):/tf/notebooks -it tf [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 …]
|
D | build_docker_and_run_tests.sh | 16 # This script is invoked by run_tests.py to accommodate "test under docker" 30 # DOCKER_RUN_SCRIPT - Script to run under docker (relative to grpc repo root) 39 time docker pull "$DOCKER_IMAGE_NAME" 41 # Make sure docker image has been built. Should be instantaneous if so. 42 docker build -t "$DOCKER_IMAGE_NAME" "$DOCKERFILE_DIR" 45 # Choose random name for docker container 48 # Git root as seen by the docker instance 51 # Run tests inside docker 55 docker run \ 61 …-e THIS_IS_REALLY_NEEDED='see https://github.com/docker/docker/issues/14203 for why docker is awfu… [all …]
|
/external/protobuf/jenkins/ |
D | build_and_run_docker.sh | 3 # Builds docker image and runs a command under it. 7 # DOCKER_RUN_SCRIPT - Script to run under docker (relative to protobuf repo root) 8 # OUTPUT_DIR - Directory that will be copied from inside docker after finishing. 9 # $@ - Extra args to pass to docker run 21 # Make sure docker image has been built. Should be instantaneous if so. 22 docker build -t $DOCKER_IMAGE_NAME $DOCKERFILE_DIR 28 # Choose random name for docker container 31 # Run command inside docker 32 docker run \ 36 …-e THIS_IS_REALLY_NEEDED='see https://github.com/docker/docker/issues/14203 for why docker is awfu… [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/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/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/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/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/grpc-grpc/tools/interop_matrix/testcases/ |
D | cxx__master | 3 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 4 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "bins/opt/interop_c… 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… [all …]
|
D | php__master | 3 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 4 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 5 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 6 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 7 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 8 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 9 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 10 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 11 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… 12 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/intero… [all …]
|
D | go__master | 3 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 4 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 5 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 6 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 7 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 8 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 9 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 10 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 11 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… 12 docker run -i --rm=true -w /go/src/google.golang.org/grpc/interop/client --net=host $docker_image b… [all …]
|
D | node__v1.1.4 | 3 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 4 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 5 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 6 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 7 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 8 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 9 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 10 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 11 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… 12 docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/in… [all …]
|
/external/tensorflow/tensorflow/tools/ci_build/builds/ |
D | docker_test.sh | 17 # Build and test TensorFlow docker images. 23 # TAG : Docker image tag 24 # WHL_PATH : Path to the whl file to be installed inside the docker image 60 DOCKERFILE="tensorflow/tools/docker/Dockerfile" 62 DOCKERFILE="tensorflow/tools/docker/Dockerfile.gpu" 64 DOCKERFILE="tensorflow/tools/docker/Dockerfile.rocm" 69 # Verify docker binary existence 70 if [[ -z $(which docker) ]]; then 71 die "FAILED: docker binary unavailable" 84 # Build docker image [all …]
|
/external/flatbuffers/.travis/ |
D | build-and-run-docker-test-containers.sh | 19 docker build -t build_flatc_debian_stretch -f tests/docker/Dockerfile.testing.build_flatc_debian_st… 20 BUILD_CONTAINER_ID=$(docker create --read-only build_flatc_debian_stretch) 21 docker cp ${BUILD_CONTAINER_ID}:/code/flatc flatc_debian_stretch 23 for f in $(ls tests/docker/languages | sort) 25 …# docker pull sometimes fails for unknown reasons, probably travisci-related. this retries the pul… 26 REQUIRED_BASE_IMAGE=$(cat tests/docker/languages/${f} | head -n 1 | awk ' { print $2 } ') 32 docker pull $REQUIRED_BASE_IMAGE && break 38 docker build -t $(echo ${f} | cut -f 3- -d .) -f tests/docker/languages/${f} .
|
/external/tensorflow/tensorflow/tools/ci_build/remote/ |
D | BUILD | 1 # For generating docker images for TensorFlow remote build 5 name = "remote-docker-build-cpu", 7 "@llvm//:docker", # llvm's docker file group 9 outs = ["remote-docker-build-cpu.txt"], 17 name = "remote-docker-build-gpu", 19 "@llvm//:docker", # llvm's docker file group 21 outs = ["remote-docker-build-gpu.txt"],
|