ibmcom/postgresql
PostgreSQL is an object-relational database management system (ORDBMS) with an emphasis on extensibility and on standards-compliance.
The PostgreSQL Database Management System is licensed under the terms of the PostgreSQL license - https://www.postgresql.org/about/licence/
9.6.6
This is a fat manifest, which based on the host architecture will pull from one of the following repositories:
ibmcom/postgresql-amd64
ibmcom/postgresql-ppc64le
ibmcom/postgresql-s390x
You can create a postgresql superuser at launch by specifying POSTGRESQL_USER and POSTGRESQL_PASSWORD variables. You may also create a database by using POSTGRESQL_DATABASE.
docker run -itd \
-e 'POSTGRESQL_USER=postgres' \
-e 'POSTGRESQL_PASSWORD=postgres_password' \
-e 'POSTGRESQL_DATABASE=postgres_db' \
--name=postgres96 \
ibmcom/postgresql:9.6.6
docker pull ibmcom/postgresql