mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-09 18:00:40 +00:00
script to help build/publish new docker images
This commit is contained in:
parent
022629604c
commit
43f03d0d0c
27
build-docker.sh
Executable file
27
build-docker.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
|
||||
tag=$1
|
||||
|
||||
if [ -z $tag ]; then
|
||||
echo "please provide a tag arg"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
major=$(echo $tag | awk -F. '{print $1}')
|
||||
minor=$(echo $tag | awk -F. '{print $2}')
|
||||
# patch=$(echo $tag | awk -F. '{print $3}')
|
||||
|
||||
tf_ver=$(grep TERRAFORM_VERSION Dockerfile | head -n 1 | awk '{print $3}')
|
||||
|
||||
docker build -t jmccann/drone-terraform:latest .
|
||||
|
||||
set -x
|
||||
docker tag jmccann/drone-terraform:latest jmccann/drone-terraform:${major}
|
||||
docker tag jmccann/drone-terraform:latest jmccann/drone-terraform:${major}.${minor}
|
||||
docker tag jmccann/drone-terraform:latest jmccann/drone-terraform:${major}.${minor}-${tf_ver}
|
||||
|
||||
docker push jmccann/drone-terraform:latest
|
||||
docker push jmccann/drone-terraform:${major}
|
||||
docker push jmccann/drone-terraform:${major}.${minor}
|
||||
docker push jmccann/drone-terraform:${major}.${minor}-${tf_ver}
|
||||
set +x
|
Loading…
Reference in New Issue
Block a user