Skip to content

Commit

Permalink
feat: New 10.x distributions from #12, fix scripts path
Browse files Browse the repository at this point in the history
  • Loading branch information
theodorosploumis committed Nov 16, 2024
1 parent 40a5baa commit ec1fb12
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/10x/build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion scripts/10x/pull-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion scripts/10x/test-containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/8x/pull-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion scripts/8x/test-containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}//')
Expand Down

0 comments on commit ec1fb12

Please sign in to comment.