From bdc21d9b13987352e5e97899b40cff00a5d99f9f Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 5 Nov 2015 00:53:26 -0500 Subject: [PATCH] clarify docs around setting custom env variables --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 21c6a9b..6c887dd 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,13 @@ dokku postgres:create lolipop # official postgres image export POSTGRES_IMAGE="postgres" export POSTGRES_IMAGE_VERSION="9.4.4" + +# you can also specify custom environment +# variables to start the postgres service +# in semi-colon separated forma export POSTGRES_CUSTOM_ENV="USER=alpha;HOST=beta" + +# create a postgres service dokku postgres:create lolipop # get connection information as follows