Initial structure

This commit is contained in:
dotneft
2016-08-03 01:09:49 -07:00
parent fcbdac296e
commit 02b3769d6c
138 changed files with 22523 additions and 0 deletions

18
java-gateway/alpine/build.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
os=alpine
version=$1
version=${version:-"latest"}
app_component=java-gateway
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 .
#docker rm -f zabbix-$app_component
#docker run --name zabbix-$app_component -t -d --link zabbix-server:zabbix-server zabbix-$app_component:$os-$version