zabbix-docker/zabbix-appliance/rhel/build.sh

27 lines
656 B
Bash
Raw Normal View History

2018-05-08 23:25:00 +02:00
#!/bin/bash
os=${PWD##*/}
version=$1
version=${version:-"latest"}
cd ../
app_component=""
cd $os/
if [[ ! $version =~ ^[0-9]*\.[0-9]*\.[0-9]*$ ]] && [ "$version" != "latest" ]; then
echo "Incorrect syntax of the version"
exit 1
fi
if [ "$version" != "latest" ]; then
VCS_REF=`svn info svn://svn.zabbix.com/tags/$version |grep "Last Changed Rev"|awk '{print $4;}'`
fi
docker build -t zabbix-appliance:$os-$version --build-arg VCS_REF="$VCS_REF" --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` -f Dockerfile .
#docker rm -f zabbix-appliance
#sleep 5
#docker run --name zabbix-appliance -t -d -p 80:80 zabbix-appliance:$os-$version