Skip to content

Commit 2f1fbcc

Browse files
authored
Update README.md about docker images (#960)
1 parent 7daa8e5 commit 2f1fbcc

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ GROUP BY date;
161161
Run PostgreSQL with pg_duckdb pre-installed in a docker container:
162162

163163
```bash
164-
docker run -d -e POSTGRES_PASSWORD=duckdb pgduckdb/pgduckdb:18-v1.0.0
164+
docker run -d -e POSTGRES_PASSWORD=duckdb pgduckdb/pgduckdb:17-v1.0.0
165165
```
166166

167167
With MotherDuck:
168168
```bash
169169
export MOTHERDUCK_TOKEN=<your_token>
170-
docker run -d -e POSTGRES_PASSWORD=duckdb -e MOTHERDUCK_TOKEN pgduckdb/pgduckdb:18-v1.0.0
170+
docker run -d -e POSTGRES_PASSWORD=duckdb -e MOTHERDUCK_TOKEN pgduckdb/pgduckdb:17-v1.0.0
171171
```
172172

173173
### Try with Hydra

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
db:
3-
image: pgduckdb/pgduckdb:16-main
3+
image: pgduckdb/pgduckdb:18-main
44
ports:
55
- ${PORT:-5432}:5432
66
environment:

docker/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44

55
Any tagged release are built and pushed with the tag `$POSTGRES_VERSION-$TAG`, for example:
66

7-
* `15-v0.1.0`
8-
* `16-v0.1.0`
9-
* `17-v0.1.0`
10-
* `18-v0.1.0`
7+
* `15-v1.0.0`
8+
* `16-v1.0.0`
9+
* `17-v1.0.0`
1110

1211
### Nightly builds
1312

@@ -23,21 +22,21 @@ A corresponding tag with the git sha of the build is also pushed.
2322
If you use a nightly image tag, you will need to pull to receive updates, for example:
2423

2524
```
26-
docker pull pgduckdb/pgduckdb:16-main
25+
docker pull pgduckdb/pgduckdb:18-main
2726
```
2827

2928
## Usage instructions
3029

3130
Use of this image is [the same as the Postgres image](https://hub.docker.com/_/postgres/). For example, you can run the image directly:
3231

3332
```shell
34-
docker run -d -e POSTGRES_PASSWORD=duckdb pgduckdb/pgduckdb:16-main
33+
docker run -d -e POSTGRES_PASSWORD=duckdb pgduckdb/pgduckdb:18-main
3534
```
3635

3736
And with MotherDuck, it is as simple as:
3837
```shell
3938
$ export MOTHERDUCK_TOKEN=<your personal MD token>
40-
$ docker run -d -e POSTGRES_PASSWORD=duckdb -e MOTHERDUCK_TOKEN pgduckdb/pgduckdb:16-main
39+
$ docker run -d -e POSTGRES_PASSWORD=duckdb -e MOTHERDUCK_TOKEN pgduckdb/pgduckdb:18-main
4140
```
4241

4342
You can also use docker compose from duckdb/pg_duckdb:

0 commit comments

Comments
 (0)