Sha256: 8ae0837dcf380bf528bc02fa24eee843afc617448ef064269c14a8cf2d5493d1

Contents?: true

Size: 299 Bytes

Versions: 4

Compression:

Stored size: 299 Bytes

Contents

#!/bin/bash

BIN_HOME="$( cd "$( dirname "$0" )" && pwd )"
TEST_HOME="$( cd "$BIN_HOME/.." && pwd )"

for dir in $TEST_HOME/images/*/
do
  cd $dir &&
  image_name=${PWD##*/} && # to assign to a variable
  echo "Pulling $image_name from docker's index repo" &&
  docker pull natives/$image_name
done

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
natives-0.6.2 catalogs_test/bin/pull_images
natives-0.6.1 catalogs_test/bin/pull_images
natives-0.6.0 catalogs_test/bin/pull_images
natives-0.5.5 catalogs_test/bin/pull_images