From e0c9f6b7f47ce306a131fef8f6066932ce972735 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 29 Aug 2015 01:51:07 -0400 Subject: [PATCH] add central place for configuration --- config | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config diff --git a/config b/config new file mode 100644 index 0000000..41cd383 --- /dev/null +++ b/config @@ -0,0 +1,13 @@ +#!/usr/bin/env bash +export POSTGRES_IMAGE=${POSTGRES_IMAGE:="postgres"} +export POSTGRES_IMAGE_VERSION=${POSTGRES_IMAGE_VERSION:="9.5"} +export POSTGRES_ROOT=/var/lib/dokku/services/postgres + +export PLUGIN_COMMAND_PREFIX="postgres" +export PLUGIN_DATA_ROOT=$POSTGRES_ROOT +export PLUGIN_DATASTORE_PORT=5432 +export PLUGIN_DEFAULT_ALIAS="DATABASE" +export PLUGIN_IMAGE=$POSTGRES_IMAGE +export PLUGIN_IMAGE_VERSION=$POSTGRES_IMAGE_VERSION +export PLUGIN_SCHEME="postgres" +export PLUGIN_SERVICE="Postgres"