containers-postgresql/Dockerfile

24 lines
705 B
Docker
Raw Normal View History

2021-10-03 23:19:00 +00:00
ARG ALPINE_VERSION=3.13.6
ARG BASE_IMAGE=sutty/monit
FROM ${BASE_IMAGE}:${ALPINE_VERSION}
2020-07-27 19:50:21 +00:00
MAINTAINER "f <f@sutty.nl>"
ARG PG_VERSION=13
ARG PG_VERSION_APPENDED
2019-09-24 17:04:19 +00:00
ENV PGVER=$PG_VERSION
ENV PGBASE=/var/lib/postgresql
ENV PGDATA=${PGBASE}/${PGVER}/data
ENV PAGER="less -niSFX"
2019-09-24 17:04:19 +00:00
# Starting from Alpine 3.15 there are several PostgreSQL versions
# supported.
RUN apk add --no-cache postgresql${PG_VERSION_APPENDED} postgresql${PG_VERSION_APPENDED}-contrib daemonize less
RUN install -dm 750 -o postgres -g postgres /etc/postgres.d
2019-09-24 17:04:19 +00:00
COPY ./monit.conf /etc/monit.d/postgresql.conf
COPY ./postgresqld.sh /usr/local/bin/postgresqld
COPY ./postgresql.conf /etc/postgres.d/postgresql.conf
2019-09-24 17:04:19 +00:00
EXPOSE 5432
2019-09-24 17:29:43 +00:00
VOLUME $PGBASE