-
Notifications
You must be signed in to change notification settings - Fork 14
Add Dockerfiles to qa citus packages #379
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
m3hm3t
wants to merge
2
commits into
develop
Choose a base branch
from
m3hm3t/packaging_qa
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| # Use Debian as the base image | ||
| FROM debian:bookworm | ||
|
|
||
| # Set environment variables to avoid interactive prompts | ||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ARG VERSION=13.0.1 | ||
| ENV CITUS_VERSION=${VERSION}.citus-1 | ||
| ENV PG_MAJOR=17 | ||
|
|
||
| # Install dependencies | ||
| RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
| ca-certificates \ | ||
| curl \ | ||
| gnupg \ | ||
| lsb-release \ | ||
| sudo | ||
|
|
||
| # Add PostgreSQL repository | ||
| RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | tee /etc/apt/trusted.gpg.d/postgresql.asc && \ | ||
| echo "deb http://apt.postgresql.org/pub/repos/apt bookworm-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list | ||
|
|
||
| # Install PostgreSQL $PG_MAJOR and required packages | ||
| RUN apt-get update && apt-get install -y postgresql-$PG_MAJOR postgresql-contrib | ||
|
|
||
| # Install Citus repository and required extensions | ||
| RUN curl -s https://install.citusdata.com/community/deb.sh | bash && \ | ||
| apt-get update && apt-get install -y \ | ||
| postgresql-$PG_MAJOR-citus-13.0=$CITUS_VERSION \ | ||
| postgresql-$PG_MAJOR-hll=2.18.citus-1 \ | ||
| postgresql-$PG_MAJOR-topn=2.7.0.citus-1 | ||
|
|
||
| # Ensure PostgreSQL data directory exists and has correct permissions | ||
| RUN mkdir -p /var/lib/postgresql/$PG_MAJOR/main && chown -R postgres:postgres /var/lib/postgresql && chmod -R 700 /var/lib/postgresql | ||
|
|
||
| # Switch to postgres user before running PostgreSQL | ||
| USER postgres | ||
|
|
||
| # Initialize the database only if it's not already initialized | ||
| RUN bash -c '[ ! -f "/var/lib/postgresql/${PG_MAJOR}/main/PG_VERSION" ] && /usr/lib/postgresql/${PG_MAJOR}/bin/initdb -D /var/lib/postgresql/${PG_MAJOR}/main || echo "Database already initialized"' | ||
|
|
||
| # Fix pg_hba.conf to allow connections | ||
| RUN echo "local all postgres trust" > /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "local all all md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "host all all 127.0.0.1/32 md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "host all all ::1/128 md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf | ||
|
|
||
| # Add Citus to PostgreSQL config | ||
| RUN echo "shared_preload_libraries = 'citus'" >> /var/lib/postgresql/$PG_MAJOR/main/postgresql.conf | ||
|
|
||
| # Create an entrypoint script to start PostgreSQL properly | ||
| USER root | ||
| COPY docker-entrypoint.sh /usr/local/bin/ | ||
| RUN chmod +x /usr/local/bin/docker-entrypoint.sh | ||
|
|
||
| # Switch back to postgres user | ||
| USER postgres | ||
|
|
||
| # Use custom entrypoint to start PostgreSQL and create the Citus extension | ||
| ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] | ||
|
|
||
| # Expose PostgreSQL port | ||
| EXPOSE 5432 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| # Use Debian as the base image | ||
| FROM debian:bullseye | ||
|
|
||
| # Set environment variables to avoid interactive prompts | ||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ARG VERSION=13.0.1 | ||
| ENV CITUS_VERSION=${VERSION}.citus-1 | ||
| ENV PG_MAJOR=15 | ||
|
|
||
| # Install dependencies | ||
| RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
| ca-certificates \ | ||
| curl \ | ||
| gnupg \ | ||
| lsb-release \ | ||
| sudo | ||
|
|
||
| # Add PostgreSQL repository | ||
| RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | tee /etc/apt/trusted.gpg.d/postgresql.asc && \ | ||
| echo "deb http://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list | ||
|
|
||
| # Install PostgreSQL $PG_MAJOR and required packages | ||
| RUN apt-get update && apt-get install -y postgresql-$PG_MAJOR postgresql-contrib | ||
|
|
||
| # Install Citus repository and required extensions | ||
| RUN curl -s https://install.citusdata.com/community/deb.sh | bash && \ | ||
| apt-get update && apt-get install -y \ | ||
| postgresql-$PG_MAJOR-citus-13.0=$CITUS_VERSION \ | ||
| postgresql-$PG_MAJOR-hll=2.18.citus-1 \ | ||
| postgresql-$PG_MAJOR-topn=2.7.0.citus-1 | ||
|
|
||
| # Ensure PostgreSQL data directory exists and has correct permissions | ||
| RUN mkdir -p /var/lib/postgresql/$PG_MAJOR/main && chown -R postgres:postgres /var/lib/postgresql && chmod -R 700 /var/lib/postgresql | ||
|
|
||
| # Switch to postgres user before running PostgreSQL | ||
| USER postgres | ||
|
|
||
| # Initialize the database only if it's not already initialized | ||
| RUN bash -c '[ ! -f "/var/lib/postgresql/${PG_MAJOR}/main/PG_VERSION" ] && /usr/lib/postgresql/${PG_MAJOR}/bin/initdb -D /var/lib/postgresql/${PG_MAJOR}/main || echo "Database already initialized"' | ||
|
|
||
| # Fix pg_hba.conf to allow connections | ||
| RUN echo "local all postgres trust" > /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "local all all md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "host all all 127.0.0.1/32 md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "host all all ::1/128 md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf | ||
|
|
||
| # Add Citus to PostgreSQL config | ||
| RUN echo "shared_preload_libraries = 'citus'" >> /var/lib/postgresql/$PG_MAJOR/main/postgresql.conf | ||
|
|
||
| # Create an entrypoint script to start PostgreSQL properly | ||
| USER root | ||
| COPY docker-entrypoint.sh /usr/local/bin/ | ||
| RUN chmod +x /usr/local/bin/docker-entrypoint.sh | ||
|
|
||
| # Switch back to postgres user | ||
| USER postgres | ||
|
|
||
| # Use custom entrypoint to start PostgreSQL and create the Citus extension | ||
| ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] | ||
|
|
||
| # Expose PostgreSQL port | ||
| EXPOSE 5432 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| # RHEL 8-based EL8 rockylinux:8 / ubi8 | ||
| # RHEL 9-based EL9 rockylinux:9 / ubi9 | ||
| # Oracle Linux 8 OL8 oraclelinux:8 # may need to run docker pull oraclelinux:8 | ||
| # Oracle Linux 9 OL9 oraclelinux:9 | ||
| # Use Red Hat or Oracle Linux as the base image | ||
| ARG OS_TYPE=oraclelinux | ||
| ARG VERSION_ID=8 | ||
| ARG BASE_IMAGE=${OS_TYPE}:${VERSION_ID} | ||
| FROM $BASE_IMAGE | ||
|
|
||
| # Set environment variables to avoid interactive prompts | ||
| ARG CITUS_VERSION_FULL=13.0.1 | ||
| ARG CITUS_VERSION_COMPACT=130 | ||
| ARG PG_MAJOR=17 | ||
|
|
||
| # Install dependencies | ||
| RUN dnf install -y --allowerasing \ | ||
| epel-release \ | ||
| dnf-utils \ | ||
| sudo \ | ||
| curl \ | ||
| gnupg2 \ | ||
| which \ | ||
| libffi-devel \ | ||
| readline-devel \ | ||
| gcc \ | ||
| make \ | ||
| which \ | ||
| tar | ||
|
|
||
| # Add PostgreSQL repository based on EL version | ||
| RUN export EL_VERSION=$(source /etc/os-release && echo ${VERSION_ID%%.*}) && \ | ||
| dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-${EL_VERSION}-x86_64/pgdg-redhat-repo-latest.noarch.rpm | ||
|
|
||
| # Disable built-in PostgreSQL module | ||
| RUN dnf -qy module disable postgresql | ||
|
|
||
| # Install PostgreSQL and required packages | ||
| RUN dnf install -y postgresql${PG_MAJOR} postgresql${PG_MAJOR}-server postgresql${PG_MAJOR}-contrib | ||
|
|
||
| # Install Citus repository and extensions | ||
| RUN export VERSION_ID=$(source /etc/os-release && echo ${VERSION_ID%%.*}) && \ | ||
| curl -s https://packagecloud.io/install/repositories/citusdata/community/script.rpm.sh | sudo bash && \ | ||
| yum install -y citus${CITUS_VERSION_COMPACT}_${PG_MAJOR}-${CITUS_VERSION_FULL}.citus-1.el${VERSION_ID}.x86_64 \ | ||
| topn_${PG_MAJOR}-2.7.0.citus-1.el${VERSION_ID}.x86_64 \ | ||
| hll_${PG_MAJOR}-2.18.citus-1.el${VERSION_ID}.x86_64 | ||
|
|
||
| # Ensure PostgreSQL data directory exists and has correct permissions | ||
| RUN mkdir -p /var/lib/pgsql/${PG_MAJOR}/data && chown -R postgres:postgres /var/lib/pgsql && chmod -R 700 /var/lib/pgsql | ||
|
|
||
| # Switch to postgres user before running PostgreSQL | ||
| USER postgres | ||
|
|
||
| # Initialize the database only if it's not already initialized | ||
| RUN [ ! -f "/var/lib/pgsql/${PG_MAJOR}/data/PG_VERSION" ] && /usr/pgsql-${PG_MAJOR}/bin/initdb -D /var/lib/pgsql/${PG_MAJOR}/data || echo "Database already initialized" | ||
|
|
||
| # Fix pg_hba.conf to allow connections | ||
| RUN echo "local all postgres trust" > /var/lib/pgsql/${PG_MAJOR}/data/pg_hba.conf && \ | ||
| echo "local all all md5" >> /var/lib/pgsql/${PG_MAJOR}/data/pg_hba.conf && \ | ||
| echo "host all all 127.0.0.1/32 md5" >> /var/lib/pgsql/${PG_MAJOR}/data/pg_hba.conf && \ | ||
| echo "host all all ::1/128 md5" >> /var/lib/pgsql/${PG_MAJOR}/data/pg_hba.conf | ||
|
|
||
| # Add Citus to PostgreSQL config | ||
| RUN echo "shared_preload_libraries = 'citus'" >> /var/lib/pgsql/${PG_MAJOR}/data/postgresql.conf | ||
|
|
||
| # Create an entrypoint script to start PostgreSQL properly | ||
| USER root | ||
| COPY docker-entrypoint-rhel.sh /usr/local/bin/ | ||
| RUN chmod +x /usr/local/bin/docker-entrypoint-rhel.sh | ||
|
|
||
| # Switch back to postgres user | ||
| USER postgres | ||
|
|
||
| # Use custom entrypoint to start PostgreSQL and create the Citus extension | ||
| ENTRYPOINT ["/usr/local/bin/docker-entrypoint-rhel.sh"] | ||
|
|
||
| # Expose PostgreSQL port | ||
| EXPOSE 5432 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| # Use Ubuntu 22.04 Jammy as the base image | ||
| # FROM ubuntu:22.04 | ||
|
|
||
| # Use Ubuntu 20.04 Focal as the base image | ||
| FROM ubuntu:20.04 | ||
|
|
||
|
|
||
| # Set environment variables to avoid interactive prompts | ||
| ENV DEBIAN_FRONTEND=noninteractive | ||
| ARG VERSION=13.0.1 | ||
| ENV CITUS_VERSION=${VERSION}.citus-1 | ||
| ENV PG_MAJOR=17 | ||
|
|
||
| # Install dependencies | ||
| RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
| ca-certificates \ | ||
| curl \ | ||
| gnupg \ | ||
| lsb-release \ | ||
| sudo | ||
|
|
||
| # Add PostgreSQL repository | ||
| RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | tee /etc/apt/trusted.gpg.d/postgresql.asc && \ | ||
| echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list | ||
|
|
||
| # Install PostgreSQL $PG_MAJOR and required packages | ||
| RUN apt-get update && apt-get install -y postgresql-$PG_MAJOR postgresql-contrib | ||
|
|
||
| # Install Citus repository and required extensions | ||
| RUN curl -s https://install.citusdata.com/community/deb.sh | bash && \ | ||
| apt-get update && apt-get install -y \ | ||
| postgresql-$PG_MAJOR-citus-13.0=$CITUS_VERSION \ | ||
| postgresql-$PG_MAJOR-hll=2.18.citus-1 \ | ||
| postgresql-$PG_MAJOR-topn=2.7.0.citus-1 | ||
|
|
||
| # Ensure PostgreSQL data directory exists and has correct permissions | ||
| RUN mkdir -p /var/lib/postgresql/$PG_MAJOR/main && chown -R postgres:postgres /var/lib/postgresql && chmod -R 700 /var/lib/postgresql | ||
|
|
||
| # Switch to postgres user before running PostgreSQL | ||
| USER postgres | ||
|
|
||
| # Initialize the database only if it's not already initialized | ||
| RUN bash -c '[ ! -f "/var/lib/postgresql/${PG_MAJOR}/main/PG_VERSION" ] && /usr/lib/postgresql/${PG_MAJOR}/bin/initdb -D /var/lib/postgresql/${PG_MAJOR}/main || echo "Database already initialized"' | ||
|
|
||
| # Fix pg_hba.conf to allow connections | ||
| RUN echo "local all postgres trust" > /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "local all all md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "host all all 127.0.0.1/32 md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf && \ | ||
| echo "host all all ::1/128 md5" >> /var/lib/postgresql/$PG_MAJOR/main/pg_hba.conf | ||
|
|
||
| # Add Citus to PostgreSQL config | ||
| RUN echo "shared_preload_libraries = 'citus'" >> /var/lib/postgresql/$PG_MAJOR/main/postgresql.conf | ||
|
|
||
| # Create an entrypoint script to start PostgreSQL properly | ||
| USER root | ||
| COPY docker-entrypoint.sh /usr/local/bin/ | ||
| RUN chmod +x /usr/local/bin/docker-entrypoint.sh | ||
|
|
||
| # Switch back to postgres user | ||
| USER postgres | ||
|
|
||
| # Use custom entrypoint to start PostgreSQL and create the Citus extension | ||
| ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] | ||
|
|
||
| # Expose PostgreSQL port | ||
| EXPOSE 5432 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| docker build -t citus-test -f Ubuntu.dockerfile . | ||
| docker build -t citus-test -f Debian.bookworm.dockerfile . | ||
|
|
||
| docker rm -f citus-container | ||
| docker run -d --name citus-container citus-test | ||
| docker exec -it citus-container psql -U postgres | ||
|
|
||
| docker exec -i citus-container psql -U postgres < test.sql | ||
|
|
||
|
|
||
| docker logs -f citus-container | ||
|
|
||
| docker exec -it citus-container cat /etc/os-release | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| #!/bin/bash | ||
| set -e | ||
|
|
||
| # Set PG_MAJOR to 15 by default if not provided | ||
| if command -v psql &> /dev/null; then | ||
| PG_MAJOR=$(psql -V | awk '{print $3}' | cut -d. -f1) | ||
| else | ||
| PG_MAJOR=15 | ||
| fi | ||
|
|
||
| # Define PostgreSQL paths dynamically | ||
| PG_CTL="/usr/pgsql-${PG_MAJOR}/bin/pg_ctl" | ||
| PG_DATA_DIR="/var/lib/pgsql/${PG_MAJOR}/data" | ||
| PG_LOG="/var/lib/pgsql/logfile" | ||
| PG_BIN="/usr/pgsql-${PG_MAJOR}/bin/postgres" | ||
| PG_ISREADY="/usr/pgsql-${PG_MAJOR}/bin/pg_isready" | ||
|
|
||
| # Ensure PostgreSQL data directory exists | ||
| if [ ! -d "$PG_DATA_DIR" ]; then | ||
| echo "Initializing PostgreSQL data directory: $PG_DATA_DIR" | ||
| mkdir -p "$PG_DATA_DIR" | ||
| chown -R postgres:postgres "$PG_DATA_DIR" | ||
| chmod 700 "$PG_DATA_DIR" | ||
| /usr/pgsql-${PG_MAJOR}/bin/initdb -D "$PG_DATA_DIR" | ||
| fi | ||
|
|
||
| # Start PostgreSQL in the background | ||
| $PG_CTL -D "$PG_DATA_DIR" -l "$PG_LOG" start | ||
|
|
||
| # Wait for PostgreSQL to be ready | ||
| until $PG_ISREADY -q -d postgres; do | ||
| sleep 1 | ||
| done | ||
|
|
||
| # Ensure Citus extension is installed | ||
| psql -U postgres -c "CREATE EXTENSION IF NOT EXISTS citus;" | ||
| psql -U postgres -c "SELECT * FROM pg_extension WHERE extname = 'citus';" | ||
|
|
||
| # Stop PostgreSQL before running the container foreground process | ||
| $PG_CTL -D "$PG_DATA_DIR" stop | ||
|
|
||
| # Start PostgreSQL in the foreground | ||
| exec $PG_BIN -D "$PG_DATA_DIR" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| #!/bin/bash | ||
| set -e | ||
|
|
||
| # Set PG_MAJOR to 16 by default if not provided | ||
| PG_MAJOR=${PG_MAJOR:-16} | ||
|
|
||
| # Define PostgreSQL paths dynamically | ||
| PG_CTL="/usr/lib/postgresql/${PG_MAJOR}/bin/pg_ctl" | ||
| PG_DATA_DIR="/var/lib/postgresql/${PG_MAJOR}/main" | ||
| PG_LOG="/var/lib/postgresql/logfile" | ||
| PG_BIN="/usr/lib/postgresql/${PG_MAJOR}/bin/postgres" | ||
|
|
||
| # Ensure PostgreSQL data directory exists | ||
| if [ ! -d "$PG_DATA_DIR" ]; then | ||
| echo "Error: PostgreSQL data directory $PG_DATA_DIR does not exist!" | ||
| exit 1 | ||
| fi | ||
|
|
||
| # Start PostgreSQL in the background | ||
| $PG_CTL -D "$PG_DATA_DIR" -l "$PG_LOG" start | ||
|
|
||
| # Wait for PostgreSQL to be ready | ||
| until pg_isready -q -d postgres; do | ||
| sleep 1 | ||
| done | ||
|
|
||
| # Ensure Citus extension is installed | ||
| psql -U postgres -c "CREATE EXTENSION IF NOT EXISTS citus;" | ||
| psql -U postgres -c "SELECT * FROM pg_extension WHERE extname = 'citus';" | ||
|
|
||
| # Stop PostgreSQL before running the container foreground process | ||
| $PG_CTL -D "$PG_DATA_DIR" stop | ||
|
|
||
| # Start PostgreSQL in the foreground | ||
| exec $PG_BIN -D "$PG_DATA_DIR" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why can we have the database already initialized?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To make this more robust, we can check for
pg_controlin/var/lib/postgresql/${PG_MAJOR}/main/global/, which ensures that the database directory is actually valid before skipping initialization.Let me know if you think this approach works, and I can push an update!