The big one update :-)

This commit is contained in:
Alexey Pustovalov
2018-02-18 22:42:44 +02:00
parent 3b7cc92f9b
commit 67d50cacb3
144 changed files with 16435 additions and 15824 deletions

View File

@ -1,18 +1,24 @@
#!/bin/bash
os=ubuntu
os=${PWD##*/}
version=$1
version=${version:-"latest"}
app_component=java-gateway
cd ../
app_component=${PWD##*/}
cd $os/
if [[ ! $version =~ ^[0-9]*\.[0-9]*\.[0-9]*$ ]] && [ "$version" != "latest" ]; then
echo "Incorrect syntax of the version"
exit 1
fi
docker build -t zabbix-$app_component:$os-$version -f Dockerfile .
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-$app_component:$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-$app_component
#docker run --name zabbix-$app_component -t -d --link zabbix-server:zabbix-server zabbix-$app_component:$os-$version