From ba3d81cd2038452ec1cd587bf49e0df01d5fdb34 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 24 Nov 2024 18:51:52 -0500 Subject: [PATCH] Release 1.40.0 --- README.md | 10 +++++++++- plugin.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1d53c6b..e2c7c64 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # dokku postgres [![Build Status](https://img.shields.io/github/actions/workflow/status/dokku/dokku-postgres/ci.yml?branch=master&style=flat-square "Build Status")](https://github.com/dokku/dokku-postgres/actions/workflows/ci.yml?query=branch%3Amaster) [![IRC Network](https://img.shields.io/badge/irc-libera-blue.svg?style=flat-square "IRC Libera")](https://webchat.libera.chat/?channels=dokku) -Official postgres plugin for dokku. Currently defaults to installing [postgres 17.0](https://hub.docker.com/_/postgres/). +Official postgres plugin for dokku. Currently defaults to installing [postgres 17.1](https://hub.docker.com/_/postgres/). ## Requirements @@ -103,9 +103,17 @@ dokku postgres:create lollipop Official Postgres "$DOCKER_BIN" image ls does not include postgis extension (amongst others). The following example creates a new postgres service using `postgis/postgis:13-3.1` image, which includes the `postgis` extension. ```shell +# use the appropriate image-version for your use-case dokku postgres:create postgis-database --image "postgis/postgis" --image-version "13-3.1" ``` +To use pgvector instead, run the following: + +```shell +# use the appropriate image-version for your use-case +dokku postgres:create pgvector-database --image "pgvector/pgvector" --image-version "pg17" +``` + ### print the service information ```shell diff --git a/plugin.toml b/plugin.toml index 1e51937..7f78d10 100644 --- a/plugin.toml +++ b/plugin.toml @@ -1,4 +1,4 @@ [plugin] description = "dokku postgres service plugin" -version = "1.39.0" +version = "1.40.0" [plugin.config]