Skip to content

Commit 5d9ac5a

Browse files
committed
update readme
1 parent 1af0132 commit 5d9ac5a

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This images follows the pg_repack releases + compatibility with PostgreSQL.
1111

1212
| postgres | pg_repack |
1313
|----------|-----------|
14+
| 17 | 1.5.1 |
1415
| 16 | 1.5.0 |
1516
| 15 | 1.4.8 |
1617
| 14 | 1.4.7 |
@@ -34,10 +35,10 @@ docker build . -t pg-repack-docker
3435
### run postgres
3536

3637
This image extends the official [postgres docker image](https://hub.docker.com/_/postgres/) - so you can start a container with postgres following the official image.
37-
e.g. pg16 (+pg_repack 1.5.0):
38+
e.g. pg17 (+pg_repack 1.5.1):
3839

3940
```
40-
docker run -e POSTGRES_PASSWORD=1234 --name pg16 -p 5432:5432 -d hartmutcouk/pg-repack-docker:1.5.0
41+
docker run -e POSTGRES_PASSWORD=1234 --name pg16 -p 5432:5432 -d hartmutcouk/pg-repack-docker:1.5.1
4142
```
4243

4344
psql from local:
@@ -47,14 +48,14 @@ PGPASSWORD=supersecure psql -h localhost -U postgres
4748

4849
psql via docker:
4950
```
50-
docker run -e PGPASSWORD=supersecure -it --rm --network host hartmutcouk/pg-repack-docker:1.5.0 psql -h localhost -U postgres
51+
docker run -e PGPASSWORD=supersecure -it --rm --network host hartmutcouk/pg-repack-docker:1.5.1 psql -h localhost -U postgres
5152
```
5253

5354

5455
### exec pg_repack against host network
5556

5657
```
57-
docker run -e PGPASSWORD=1234 -it --rm --network host hartmutcouk/pg-repack-docker:1.5.0 pg_repack -h localhost -U dbroot --dbname=dbname --dry-run --table=table1 --only-indexes --no-superuser-check
58+
docker run -e PGPASSWORD=1234 -it --rm --network host hartmutcouk/pg-repack-docker:1.5.1 pg_repack -h localhost -U dbroot --dbname=dbname --dry-run --table=table1 --only-indexes --no-superuser-check
5859
```
5960

6061
Notes:

0 commit comments

Comments
 (0)