bramkn / docker-pgautoupgrade

A PostgreSQL Docker container that automatically upgrades your database

Home Page:https://hub.docker.com/r/pgautoupgrade/pgautoupgrade

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is a PostgreSQL Docker container that automatically upgrades your database.

It's whole purpose in life is to automatically detect the version of PostgreSQL used in the existing PostgreSQL data directory, and automatically upgrade it (if needed) to the required version of PostgreSQL.

After this, the PostgreSQL server starts and runs as per normal.

The reason this Docker container is needed, is because the official Docker PostgreSQL container has no ability to handle version upgrades, which leaves people to figure it out manually (not great): docker-library/postgres#37

WARNING! Backup your data!

This Docker container does an in-place upgrade of the database data, so if something goes wrong you are expected to already have backups you can restore from.

How to use this container

This container is on Docker Hub:

https://hub.docker.com/r/pgautoupgrade/pgautoupgrade

To always use the latest version of PostgreSQL, use the tag latest:

pgautoupgrade/pgautoupgrade:latest

If you instead want to run a specific version of PostgreSQL then pick a matching tag on our Docker Hub. For example, to use PostgreSQL 15 you can use:

pgautoupgrade/pgautoupgrade:15-alpine3.8

For Developers

Building the container

To build the docker image, use:

$ ./build.sh

This will take a few minutes to create the "pgautoupgrade:latest" docker container, that you can use in your docker-compose.yml files.

Breakpoints in the container

There are (at present) two predefined er... "breakpoints" in the container. When you run the container with either of them, then the container will start up and keep running, but the docker-entrypoint script will pause at the chosen location.

This way, you can docker exec into the running container to try things out, do development, testing, debugging, etc.

Before breakpoint

The before breakpoint stops just before the pg_upgrade part of the script runs, so you can try alternative things instead.

$ ./run.sh -e PGAUTO_DEVEL=before

Server breakpoint

The server breakpoint stops after the existing pg_upgrade script has run, but before the PostgreSQL server starts. Useful if you want to investigate the results of the upgrade prior to PostgreSQL acting on them.

$ ./run.sh -e PGAUTO_DEVEL=server

Testing the container image

To run the tests, use:

$ ./test.sh

The test script creates an initial PostgreSQL database for Redash using an older PG version, then starts Redash using the above "automatic updating" PostgreSQL container to update the database to the latest PostgreSQL version.

It then checks that the database files were indeed updated to the newest PostgreSQL release, and outputs an obvious SUCCESS/FAILURE message for that loop.

The test runs in a loop, testing (in sequence) PostgreSQL versions 9.5, 9.6, 10.x, 11.x, 12.x, 13.x, and 14.x.

About

A PostgreSQL Docker container that automatically upgrades your database

https://hub.docker.com/r/pgautoupgrade/pgautoupgrade

License:MIT License


Languages

Language:Shell 83.0%Language:Dockerfile 17.0%