mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-15 12:24:26 +01:00
21 lines
567 B
Bash
Executable File
21 lines
567 B
Bash
Executable File
#!/bin/bash
|
|
|
|
os=alpine
|
|
|
|
version=$1
|
|
version=${version:-"latest"}
|
|
|
|
app_component=web-apache
|
|
app_database=postgresql
|
|
|
|
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-$app_database:$os-$version -f Dockerfile .
|
|
|
|
#docker rm -f zabbix-$app_component-$app_database
|
|
|
|
#docker run --name zabbix-$app_component-$app_database -t -d --link postgres-server:postgres --link zabbix-server:zabbix-server zabbix-$app_component-$app_database:$os-$version
|