From 5a1be4f93071ac9e5da91defbedcbf613e22d52a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=20S=C3=B5mermaa?= Date: Sun, 30 Jul 2017 20:20:31 +0300 Subject: [PATCH] Add script and README --- README.md | 29 +++++++++++++++++++++++++ create-multiple-postgresql-databases.sh | 22 +++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 README.md create mode 100755 create-multiple-postgresql-databases.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..ce29132 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# Using multiple databases with official PostgreSQL Docker image + +The [official recommendation](https://hub.docker.com/_/postgres/) for creating +multiple databases is as follows: + +*If you would like to do additional initialization in an image derived from +this one, add one or more `*.sql`, `*.sql.gz`, or `*.sh` scripts under +`/docker-entrypoint-initdb.d` (creating the directory if necessary). After the +entrypoint calls `initdb` to create the default `postgres` user and database, +it will run any `*.sql` files and source any `*.sh` scripts found in that +directory to do further initialization before starting the service.* + +This directory contains a script to create multiple databases using that +mechanism. + +## Usage + +Clone the repository, mount it's directory into the official Docker image and +declare database names separated by commas in `POSTGRES_MULTIPLE_DATABASES` +environment variable as follows (`docker-compose` syntax): + + myapp-postgresql: + image: postgres:9.6.2 + volumes: + - ../docker-posgresql-multiple-databases:/docker-entrypoint-initdb.d + environment: + - POSTGRES_MULTIPLE_DATABASES=db1,db2 + - POSTGRES_USER=myapp + - POSTGRES_PASSWORD= diff --git a/create-multiple-postgresql-databases.sh b/create-multiple-postgresql-databases.sh new file mode 100755 index 0000000..e883f80 --- /dev/null +++ b/create-multiple-postgresql-databases.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +set -e +set -u + +function create_user_and_database() { + local database=$1 + echo " Creating user and database '$database'" + psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL + CREATE USER $database; + CREATE DATABASE $database; + GRANT ALL PRIVILEGES ON DATABASE $database TO $database; + EOSQL +} + +if [ $POSTGRES_MULTIPLE_DATABASES ]; then + echo "Multiple database creation requested: $POSTGRES_MULTIPLE_DATABASES" + for db in $(echo $POSTGRES_MULTIPLE_DATABASES | tr ',' ' '); do + create_user_and_database $db + done + echo "Multiple databases created" +fi