Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 767 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 767 Bytes

Multi Postgres

Based on postgres:10-alpine.

This is a first version so it doesn't handle a lot of errors.

To use this image add the following environment variables:

PG_DATABASES=database1,database2,database3
PG_USERS=user1,user2,user3
PG_PASSWORDS=password1,password2,password3

Be sure to have the same number of databases, users and passwords.

docker-compose.yml example:

version: "3.5"
services:
  multi-db:
    image: daniseijo/multi-postgres
    ports:
      - 5432:5432
    environment:
      PG_DATABASES: database1,database2,database3
      PG_USERS: user1,user2,user3
      PG_PASSWORDS: password1,password2,password3