This repository contains Dockerfiles for PostgreSQL images for OpenShift. Users can choose between RHEL and CentOS based images.
For more information about using these images with OpenShift, please see the official OpenShift Documentation.
PostgreSQL versions currently provided are:
- postgresql-9.4
- postgresql-9.5
RHEL versions currently supported are:
- RHEL7
CentOS versions currently supported are:
- CentOS7
Choose either the CentOS7 or RHEL7 based image:
-
RHEL7 based image
To build a RHEL7 based image, you need to run Docker build on a properly subscribed RHEL machine.
$ git clone --recursive https://github.com/sclorg/postgresql-container.git $ cd postgresql $ make build TARGET=rhel7 VERSIONS=9.5
-
CentOS7 based image
This image is available on DockerHub. To download it run:
$ docker pull centos/postgresql-95-centos7
To build a PostgreSQL image from scratch run:
$ git clone --recursive https://github.com/sclorg/postgresql-container.git $ cd postgresql $ make build TARGET=centos7 VERSIONS=9.5
Notice: By omitting the VERSIONS
parameter, the build/test action will be performed
on all provided versions of PostgreSQL.
For information about usage of Dockerfile for PostgreSQL 9.4, see usage documentation.
For information about usage of Dockerfile for PostgreSQL 9.5, see usage documentation.
This repository also provides a test framework, which checks basic functionality of the PostgreSQL image.
Users can choose between testing PostgreSQL based on a RHEL or CentOS image.
-
RHEL based image
To test a RHEL7 based PostgreSQL image, you need to run the test on a properly subscribed RHEL machine.
$ cd postgresql $ make test TARGET=rhel7 VERSIONS=9.5
-
CentOS based image
$ cd postgresql $ make test TARGET=centos7 VERSIONS=9.5
+By using the TEST_CASE
parameter you can choose a test case subset to be run against the image, eg:
$ cd postgresql
$ make test VERSIONS=9.5 TEST_CASE="run_general_tests run_replication_test"
Notice: By omitting the VERSIONS
parameter, the build/test action will be performed
on all provided versions of PostgreSQL.