From 09730b0e7c4b0f5d648b44992af4185e07d0125f Mon Sep 17 00:00:00 2001 From: notplants <@notplants> Date: Tue, 9 Jun 2026 15:17:47 +0000 Subject: [PATCH] feat(db): use pgautoupgrade instead of custom pg_upgrade entrypoint Replace the hand-rolled entrypoint.postgres.sh.tmpl (which apt-installed the old PG binaries and ran initdb + pg_upgrade --link by hand) with the pgautoupgrade/pgautoupgrade:18-alpine image, matching the other recipes. PGDATA is pinned to the legacy /var/lib/postgresql/data so the existing cluster on the volume is upgraded in place rather than re-initialised. Drops the db_entrypoint config and DB_ENTRYPOINT_VERSION. --- abra.sh | 1 - compose.yml | 19 +++++++--------- entrypoint.postgres.sh.tmpl | 44 ------------------------------------- 3 files changed, 8 insertions(+), 56 deletions(-) delete mode 100644 entrypoint.postgres.sh.tmpl diff --git a/abra.sh b/abra.sh index 11df4d5..1a82402 100644 --- a/abra.sh +++ b/abra.sh @@ -1,4 +1,3 @@ export CLICKHOUSE_CONF_VERSION=v2 export CLICKHOUSE_USER_CONF_VERSION=v2 -export DB_ENTRYPOINT_VERSION=v1 export CLICKHOUSE_ENTRYPOINT_VERSION=v3 diff --git a/compose.yml b/compose.yml index ff4de11..705ffab 100644 --- a/compose.yml +++ b/compose.yml @@ -35,21 +35,22 @@ services: - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - coop-cloud.${STACK_NAME}.version=4.0.0+v2.0.0 db: - image: postgres:14.18 - configs: - - source: db_entrypoint - target: /docker-entrypoint.sh - mode: 0555 - # Custom docker entrypoint to handle major Postgres version upgrades + image: pgautoupgrade/pgautoupgrade:18-alpine volumes: - db-data:/var/lib/postgresql/data - entrypoint: /docker-entrypoint.sh environment: + # pin legacy PGDATA so the existing cluster on the volume is upgraded in place, not re-init'd + - PGDATA=/var/lib/postgresql/data - POSTGRES_USER=plausible - POSTGRES_PASSWORD=plausible - POSTGRES_DB=plausible networks: - internal + healthcheck: + test: ["CMD-SHELL", "pg_isready -U plausible -d plausible"] + interval: 5s + timeout: 5s + retries: 60 deploy: labels: backupbot.backup: "true" @@ -99,10 +100,6 @@ configs: clickhouse-user-config: name: ${STACK_NAME}_clickhouse_user_config_${CLICKHOUSE_USER_CONF_VERSION} file: clickhouse-user-config.xml - db_entrypoint: - name: ${STACK_NAME}_db_entrypoint_${DB_ENTRYPOINT_VERSION} - file: entrypoint.postgres.sh.tmpl - template_driver: golang clickhouse_entrypoint: name: ${STACK_NAME}_clickhouse_entrypoint_${CLICKHOUSE_ENTRYPOINT_VERSION} file: entrypoint.clickhouse.sh diff --git a/entrypoint.postgres.sh.tmpl b/entrypoint.postgres.sh.tmpl deleted file mode 100644 index 8ecc4fe..0000000 --- a/entrypoint.postgres.sh.tmpl +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash - -set -e - -MIGRATION_MARKER=$PGDATA/migration_in_progress -OLDDATA=$PGDATA/old_data -NEWDATA=$PGDATA/new_data - -if [ -e $MIGRATION_MARKER ]; then - echo "FATAL: migration was started but did not complete in a previous run. manual recovery necessary" - exit 1 -fi - -if [ -f $PGDATA/PG_VERSION ]; then - DATA_VERSION=$(cat $PGDATA/PG_VERSION) - - if [ -n "$DATA_VERSION" -a "$PG_MAJOR" != "$DATA_VERSION" ]; then - echo "postgres data version $DATA_VERSION found, but need $PG_MAJOR. Starting migration" - echo "Installing postgres $DATA_VERSION" - sed -i "s/$/ $DATA_VERSION/" /etc/apt/sources.list.d/pgdg.list - apt-get update && apt-get install -y --no-install-recommends \ - postgresql-$DATA_VERSION \ - && rm -rf /var/lib/apt/lists/* - echo "shuffling around" - gosu postgres mkdir $OLDDATA $NEWDATA - chmod 700 $OLDDATA $NEWDATA - mv $PGDATA/* $OLDDATA/ || true - touch $MIGRATION_MARKER - echo "running initdb" - # abuse entrypoint script for initdb by making server error out - gosu postgres bash -c "export PGDATA=$NEWDATA ; /usr/local/bin/docker-entrypoint.sh --invalid-arg || true" - echo "running pg_upgrade" - cd /tmp - gosu postgres pg_upgrade --link -b /usr/lib/postgresql/$DATA_VERSION/bin -d $OLDDATA -D $NEWDATA -U $POSTGRES_USER - cp $OLDDATA/pg_hba.conf $NEWDATA/ - mv $NEWDATA/* $PGDATA - rm -rf $OLDDATA - rmdir $NEWDATA - rm $MIGRATION_MARKER - echo "migration complete" - fi -fi - -/usr/local/bin/docker-entrypoint.sh postgres