From 9e553203c53422ac1c236555d757fd69b9a761b2 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Sun, 8 Mar 2026 19:06:25 +0700 Subject: [PATCH] fix: update README to reflect changes in Postgres image and extensions --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4c84827..b1c6022 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,19 @@ Custom database Docker images for local development and self-hosted deployments. -## Postgres 18 +## Postgres - base -Based on `postgres:18.3-alpine`. +Based on `postgres:18-alpine`. + +### Extensions + +The following extensions are enabled by default: + +| Extension | Description | +| ---------- | ------------------------------------------------ | +| `citext` | Case-insensitive text type | +| `pg_trgm` | Trigram-based text similarity and fuzzy matching | +| `pgcrypto` | Cryptographic functions | ### Configuration ```bash @@ -20,12 +30,12 @@ cp .env.example .env ### Usage ```bash -docker pull git.fastwaydata.com/esauflores/database-postgres:latest +docker pull git.fastwaydata.com/esauflores/db-postgres:base ``` ```yaml services: postgres: - image: git.fastwaydata.com/esauflores/database-postgres:latest + image: git.fastwaydata.com/esauflores/db-postgres:base env_file: .env ports: - "${POSTGRES_PORT:-5432}:5432"