pcarney8 / postgresql-container

PostgreSQL container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.

Home Page:http://softwarecollections.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PostgreSQL container images

This repository contains Dockerfiles for PostgreSQL images for OpenShift. Users can choose between RHEL, Fedora and CentOS based images.

For more information about using these images with OpenShift, please see the official OpenShift Documentation.

For more information about contributing, see the Contribution Guidelines. For more information about concepts used in these container images, see the Landing page.

Versions

PostgreSQL versions currently supported are:

RHEL versions currently supported are:

  • RHEL7

CentOS versions currently supported are:

  • CentOS7

Installation

Choose either the CentOS7 or RHEL7 based image:

  • RHEL7 based image

    These images are available in the Red Hat Container Catalog. To download it run:

    podman pull registry.redhat.io/rhscl/postgresql-12-rhel7
    

    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=12
    
  • CentOS7 based image

    These images are available on DockerHub. To download it run:

    $ podman pull centos/postgresql-12-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=12
    

Note: while the installation steps are calling podman, you can replace any such calls by docker with the same arguments.

Notice: By omitting the VERSIONS parameter, the build/test action will be performed on all provided versions of PostgreSQL.

Contributing

In this repository distgen is used for generating image source files. If you'd like update a Dockerfile, please make changes in specs/multispec.yml and/or Dockerfile.template (or other distgen file) and run make generate.

Usage

For information about usage of Dockerfile for PostgreSQL 9.6, see usage documentation.

For information about usage of Dockerfile for PostgreSQL 10, see usage documentation.

For information about usage of Dockerfile for PostgreSQL 12, see usage documentation.

For versions which are not supported anymore: PostgreSQL 9.2 and PostgreSQL 9.4.

Test

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=12
    
  • CentOS based image

    $ cd postgresql
    $ make test TARGET=centos7 VERSIONS=12
    

+By using the TESTS parameter you can choose a test case subset to be run against the image, eg:

$ cd postgresql
$ make test VERSIONS=12 TESTS="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.

About

PostgreSQL container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.

http://softwarecollections.org

License:Apache License 2.0


Languages

Language:Shell 92.6%Language:Dockerfile 6.5%Language:Makefile 0.9%