Skip to content

Commit ba3d81c

Browse files
committed
Release 1.40.0
1 parent 0c625d5 commit ba3d81c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 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)
22

3-
Official postgres plugin for dokku. Currently defaults to installing [postgres 17.0](https://hub.docker.com/_/postgres/).
3+
Official postgres plugin for dokku. Currently defaults to installing [postgres 17.1](https://hub.docker.com/_/postgres/).
44

55
## Requirements
66

@@ -103,9 +103,17 @@ dokku postgres:create lollipop
103103
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.
104104

105105
```shell
106+
# use the appropriate image-version for your use-case
106107
dokku postgres:create postgis-database --image "postgis/postgis" --image-version "13-3.1"
107108
```
108109

110+
To use pgvector instead, run the following:
111+
112+
```shell
113+
# use the appropriate image-version for your use-case
114+
dokku postgres:create pgvector-database --image "pgvector/pgvector" --image-version "pg17"
115+
```
116+
109117
### print the service information
110118

111119
```shell

plugin.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[plugin]
22
description = "dokku postgres service plugin"
3-
version = "1.39.0"
3+
version = "1.40.0"
44
[plugin.config]

0 commit comments

Comments
 (0)