mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-08-09 00:24:58 +02:00
Initial structure
This commit is contained in:
18
java-gateway/alpine/build.sh
Executable file
18
java-gateway/alpine/build.sh
Executable 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
|
Reference in New Issue
Block a user