zabbix-docker/agent/alpine/build.sh

30 lines
902 B
Bash
Raw Normal View History

2016-08-03 10:09:49 +02:00
#!/bin/bash
2018-02-18 21:42:44 +01:00
os=${PWD##*/}
2016-08-03 10:09:49 +02:00
version=$1
version=${version:-"latest"}
2018-02-18 21:42:44 +01:00
cd ../
app_component=${PWD##*/}
cd $os/
2016-08-03 10:09:49 +02:00
if [[ ! $version =~ ^[0-9]*\.[0-9]*\.[0-9]*$ ]] && [ "$version" != "latest" ]; then
echo "Incorrect syntax of the version"
exit 1
fi
2018-02-18 21:42:44 +01:00
if [ "$version" != "latest" ]; then
VCS_REF=`svn info svn://svn.zabbix.com/tags/$version |grep "Last Changed Rev"|awk '{print $4;}'`
else
MAJOR_VERSION=`cat Dockerfile | grep "ARG MAJOR_VERSION" | cut -f2 -d"="`
MINOR_VERSION=`cat Dockerfile | grep "ARG ZBX_VERSION" | cut -f2 -d"."`
VCS_REF=$MAJOR_VERSION.$MINOR_VERSION
fi
docker build -t zabbix-$app_component:$os-$version --build-arg VCS_REF="$VCS_REF" --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` -f Dockerfile .
2016-08-03 10:09:49 +02:00
#docker rm -f zabbix-$app_component
#docker run --name zabbix-$app_component -t -d --link zabbix-server:zabbix-server zabbix-$app_component:$os-$version