diff --git a/scripts/10x/build-images.sh b/scripts/10x/build-images.sh index 77a71d0..6622477 100755 --- a/scripts/10x/build-images.sh +++ b/scripts/10x/build-images.sh @@ -3,7 +3,7 @@ VERSION=10x -cat images/${VERSION}/tags.txt | while read line +cat ../../images/${VERSION}/tags.txt | while read line #do # echo "Building image" $line; # docker build -t drupal8/distros:$line-$VERSION https://github.com/theodorosploumis/drupal-docker-distros.git#:images/$VERSION/$line; diff --git a/scripts/10x/pull-images.sh b/scripts/10x/pull-images.sh index 202415f..49259ff 100755 --- a/scripts/10x/pull-images.sh +++ b/scripts/10x/pull-images.sh @@ -3,7 +3,7 @@ VERSION=10x -cat $DIR/../images/$VERSION/tags.txt | while read line +cat ../../images/$VERSION/tags.txt | while read line do echo "Pulling image" $line-$VERSION; docker pull drupal8/distros:$line-$VERSION; diff --git a/scripts/10x/test-containers.sh b/scripts/10x/test-containers.sh index 0c6cfe3..caa6a07 100755 --- a/scripts/10x/test-containers.sh +++ b/scripts/10x/test-containers.sh @@ -6,7 +6,7 @@ DIR="$(dirname $0)" VERSION=10x INDEX=1 -cat ${DIR}/../../images/$VERSION/tags.txt | while read line +cat ../../images/$VERSION/tags.txt | while read line do INDEX=$INDEX+1 if [ $line == "latest" ]; then diff --git a/scripts/8x/pull-images.sh b/scripts/8x/pull-images.sh index f0285c0..6f76b33 100755 --- a/scripts/8x/pull-images.sh +++ b/scripts/8x/pull-images.sh @@ -3,7 +3,7 @@ VERSION=8x -cat $DIR/../images/$VERSION/tags.txt | while read line +cat ../../images/$VERSION/tags.txt | while read line do echo "Pulling image" $line-$VERSION; docker pull drupal8/distros:$line-$VERSION; diff --git a/scripts/8x/test-containers.sh b/scripts/8x/test-containers.sh index f63b106..8f05b7c 100755 --- a/scripts/8x/test-containers.sh +++ b/scripts/8x/test-containers.sh @@ -5,7 +5,7 @@ DOMAIN = "localhost" DIR="$(dirname $0)" VERSION=8x -cat ${DIR}/../images/$VERSION/tags.txt | while read line +cat ../../images/$VERSION/tags.txt | while read line do ID=$(echo "$line" | cut -c1-2) DISTRO=$(echo $line | sed -r 's/^.{3}//')