mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-14 20:04:50 +01:00
30 lines
902 B
Bash
Executable File
30 lines
902 B
Bash
Executable File
#!/bin/bash
|
|
|
|
os=${PWD##*/}
|
|
|
|
version=$1
|
|
version=${version:-"latest"}
|
|
|
|
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
|
|
|
|
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 .
|
|
|
|
#docker rm -f zabbix-$app_component
|
|
#docker run --name zabbix-$app_component -t -d --link zabbix-server:zabbix-server zabbix-$app_component:$os-$version
|