Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 1.61 KB

README.md

File metadata and controls

61 lines (41 loc) · 1.61 KB

pg-repack-docker

Docker image with 'pg_repack' (PostgreSQL extension) installed, can be run natively - or be used 'client-side' to run/invoke pg_repack functionality for a PostgreSQL database with the extension installed.

Reference: https://github.com/reorg/pg_repack

versions

This images follows the pg_repack releases + compatibility with PostgreSQL.

postgres pg_repack
10 1.4.3
11 1.4.4
12 1.4.5
13 1.4.6
14 1.4.7
15 1.4.8

Dockerhub

https://hub.docker.com/r/hartmutcouk/pg-repack-docker/

build

docker build . -t pg-repack-docker

run postgres

This image extends the official postgres docker image - so you can start a container with postgres following the official image.
e.g. pg15 (+pg_repack 1.4.8):

docker run -e POSTGRES_PASSWORD=1234 --name pg15 -p 5432:5432 -d hartmutcouk/pg-repack-docker:1.4.8

psql from local:

PGPASSWORD=supersecure psql -h localhost -U postgres

psql via docker:

docker run -e PGPASSWORD=supersecure -it --rm --network host hartmutcouk/pg-repack-docker:1.4.8 psql -h localhost -U postgres

exec pg_repack against host network

docker run -e PGPASSWORD=1234 -it --rm --network host hartmutcouk/pg-repack-docker:1.4.7 pg_repack -h localhost -U dbroot --dbname=dbname --dry-run --table=table1 --only-indexes --no-superuser-check

Notes:

  • uses host network: --network host
  • passing PGPASSWORD via env variable avoids password prompt (to e.g. exec via script/cron)