PostgreSQL

PostgreSQL

Relational database.

One can run in a docker-compose environment like this:

version: '3.8'

services:
  postgres:
    image: postgres:13.3 # Version must be consistent with infrastructure
    environment:
      - "PGUSER=test"
      - "POSTGRES_USER=test"
      - "POSTGRES_PASSWORD=test"
      - "POSTGRES_DB=test"
    ports:
      - "5432:5432"
    healthcheck:
      test: ["CMD-SHELL", "pg_isready"]
      interval: 5s
      timeout: 5s
      retries: 5