ibmcom/postgresql

By ibmcom

Updated over 6 years ago

Image

10K+

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/

Latest Tags

9.6.6

This is a fat manifest, which based on the host architecture will pull from one of the following repositories: ibmcom/postgresql-amd64ibmcom/postgresql-ppc64leibmcom/postgresql-s390x

Running the image

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 Command

docker pull ibmcom/postgresql