Added Apache with PostgreSQL support image

This commit is contained in:
dotneft
2016-10-28 06:49:42 -07:00
parent 98934a3141
commit 1f208172b9
33 changed files with 2903 additions and 7 deletions

View File

@ -0,0 +1,20 @@
#!/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