-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,81 +1,87 @@ | ||
ARG PG_VERSION=15.6 | ||
ARG PG_MAJOR_VERSION=15 | ||
ARG PG_VERSION=16.3 | ||
ARG PG_MAJOR_VERSION=16 | ||
ARG VERSION=custom | ||
|
||
FROM golang:1.20 | ||
FROM golang:1.20 AS builder | ||
|
||
WORKDIR /go/src/github.com/fly-apps/fly-postgres | ||
COPY . . | ||
|
||
RUN CGO_ENABLED=0 GOOS=linux go build -v -o /fly/bin/event_handler ./cmd/event_handler | ||
RUN CGO_ENABLED=0 GOOS=linux go build -v -o /fly/bin/failover_validation ./cmd/failover_validation | ||
RUN CGO_ENABLED=0 GOOS=linux go build -v -o /fly/bin/pg_unregister ./cmd/pg_unregister | ||
RUN CGO_ENABLED=0 GOOS=linux go build -v -o /fly/bin/start_monitor ./cmd/monitor | ||
RUN CGO_ENABLED=0 GOOS=linux go build -v -o /fly/bin/start_admin_server ./cmd/admin_server | ||
RUN CGO_ENABLED=0 GOOS=linux go build -v -o /fly/bin/start ./cmd/start | ||
RUN CGO_ENABLED=0 GOOS=linux \ | ||
go build -v -o /fly/bin/event_handler ./cmd/event_handler && \ | ||
go build -v -o /fly/bin/failover_validation ./cmd/failover_validation && \ | ||
go build -v -o /fly/bin/pg_unregister ./cmd/pg_unregister && \ | ||
go build -v -o /fly/bin/start_monitor ./cmd/monitor && \ | ||
go build -v -o /fly/bin/start_admin_server ./cmd/admin_server && \ | ||
go build -v -o /fly/bin/start ./cmd/start | ||
|
||
COPY ./bin/* /fly/bin/ | ||
|
||
FROM wrouesnel/postgres_exporter:latest AS postgres_exporter | ||
FROM ubuntu:24.04 | ||
|
||
FROM postgres:${PG_VERSION} | ||
ENV PGDATA=/data/postgresql | ||
ENV PGPASSFILE=/data/.pgpass | ||
ARG VERSION | ||
ARG PG_MAJOR_VERSION | ||
ARG POSTGIS_MAJOR=3 | ||
ARG HAPROXY_VERSION=2.8 | ||
ARG REPMGR_VERSION=5.4.1-1build2 | ||
|
||
LABEL fly.app_role=postgres_cluster | ||
LABEL fly.version=${VERSION} | ||
LABEL fly.pg-version=${PG_VERSION} | ||
LABEL fly.pg-manager=repmgr | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
ca-certificates iproute2 curl bash dnsutils vim haproxy socat procps ssh gnupg rsync barman-cli barman barman-cli-cloud cron \ | ||
&& apt autoremove -y | ||
ca-certificates iproute2 curl bash dnsutils vim socat procps ssh gnupg rsync barman-cli barman barman-cli-cloud cron gosu \ | ||
&& apt autoremove -y && apt clean && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
# Install PostgreSQL | ||
RUN curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor -o /usr/share/keyrings/postgresql-archive-keyring.gpg && \ | ||
echo "deb [signed-by=/usr/share/keyrings/postgresql-archive-keyring.gpg] http://apt.postgresql.org/pub/repos/apt/ noble-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \ | ||
apt-get update && apt-get install --no-install-recommends -y \ | ||
postgresql-${PG_MAJOR_VERSION} \ | ||
postgresql-client-${PG_MAJOR_VERSION} \ | ||
postgresql-contrib-${PG_MAJOR_VERSION} | ||
|
||
# Repmgr | ||
RUN curl -L https://launchpad.net/ubuntu/+archive/primary/+files/postgresql-${PG_MAJOR_VERSION}-repmgr_5.3.3-2_amd64.deb -o postgresql-${PG_MAJOR_VERSION}-repmgr_5.3.3-2_amd64.deb | ||
RUN curl -L http://launchpadlibrarian.net/722514158/postgresql-${PG_MAJOR_VERSION}-repmgr_${REPMGR_VERSION}_amd64.deb -o postgresql-${PG_MAJOR_VERSION}-repmgr_${REPMGR_VERSION}_amd64.deb && \ | ||
apt-get install -y ./postgresql-${PG_MAJOR_VERSION}-repmgr_${REPMGR_VERSION}_amd64.deb \ | ||
&& rm ./postgresql-${PG_MAJOR_VERSION}-repmgr_${REPMGR_VERSION}_amd64.deb | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y ./postgresql-${PG_MAJOR_VERSION}-repmgr_5.3.3-2_amd64.deb \ | ||
&& rm ./postgresql-${PG_MAJOR_VERSION}-repmgr_5.3.3-2_amd64.deb | ||
|
||
RUN echo "deb https://packagecloud.io/timescale/timescaledb/debian/ $(cat /etc/os-release | grep VERSION_CODENAME | cut -d'=' -f2) main" > /etc/apt/sources.list.d/timescaledb.list \ | ||
&& curl -L https://packagecloud.io/timescale/timescaledb/gpgkey | apt-key add - | ||
|
||
# TimescaleDB and PostGIS | ||
RUN echo "deb https://packagecloud.io/timescale/timescaledb/ubuntu/ jammy main" > /etc/apt/sources.list.d/timescaledb.list \ | ||
&& curl -L https://packagecloud.io/timescale/timescaledb/gpgkey | apt-key add - | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
postgresql-$PG_MAJOR_VERSION-postgis-$POSTGIS_MAJOR \ | ||
postgresql-$PG_MAJOR_VERSION-postgis-$POSTGIS_MAJOR-scripts \ | ||
timescaledb-2-postgresql-$PG_MAJOR_VERSION \ | ||
timescaledb-toolkit-postgresql-$PG_MAJOR_VERSION \ | ||
&& apt autoremove -y | ||
&& apt autoremove -y && apt clean | ||
|
||
# Haproxy | ||
RUN curl https://haproxy.debian.net/bernat.debian.org.gpg \ | ||
| gpg --dearmor > /usr/share/keyrings/haproxy.debian.net.gpg | ||
|
||
RUN echo deb "[signed-by=/usr/share/keyrings/haproxy.debian.net.gpg]" \ | ||
http://haproxy.debian.net bookworm-backports-${HAPROXY_VERSION} main \ | ||
> /etc/apt/sources.list.d/haproxy.list | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
haproxy=$HAPROXY_VERSION.\* \ | ||
&& apt autoremove -y | ||
&& apt autoremove -y && apt clean | ||
|
||
COPY --from=0 /fly/bin/* /usr/local/bin | ||
COPY --from=postgres_exporter /postgres_exporter /usr/local/bin/ | ||
|
||
ADD /config/* /fly/ | ||
# Add PostgreSQL bin directory to PATH | ||
ENV PATH="/usr/lib/postgresql/${PG_MAJOR_VERSION}/bin:$PATH" | ||
|
||
# Copy Go binaries from the builder stage | ||
COPY --from=builder /fly/bin/* /usr/local/bin | ||
|
||
# Copy Postgres exporter | ||
COPY --from=wrouesnel/postgres_exporter:latest /postgres_exporter /usr/local/bin/ | ||
|
||
ADD /config/* /fly/ | ||
RUN mkdir -p /run/haproxy/ | ||
RUN usermod -d /data postgres | ||
|
||
ENV TIMESCALEDB_ENABLED=true | ||
|
||
EXPOSE 5432 | ||
|
||
|
||
CMD ["start"] |