grmvoid/postgres

By grmvoid

Updated about 2 months ago

Postgres, is relational database management system (RDBMS).

Image
Databases & Storage

5

Quick reference

Supported tags and respective Dockerfile links

How to use this image

start a postgres instance
$ docker run --name postgres -d grmvoid/postgres:17.2
... via docker-compose

Example docker-compose.yml for postgres:

services:
    postgres:
        image: grmvoid/postgres:17.2
        restart: always
        ports:
            - "5432:5432"

Environment Variables

The postgres image uses several environment variables which are easy to miss.

VariableDefault ValueDescription
PGDATA

LICENSE

View license information for the software contained in this image.

Docker Pull Command

docker pull grmvoid/postgres