-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
42 lines (32 loc) · 967 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
ARG PG_VERSION=15
FROM postgres:${PG_VERSION}
# Install additional tools and dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
postgresql-contrib \
prometheus-postgres-exporter \
&& \
rm -rf /var/lib/apt/lists/*
# Create required directories
RUN mkdir -p /var/log/postgresql && \
chown -R postgres:postgres /var/log/postgresql
# Copy files
COPY --chown=postgres:postgres entrypoint.sh /entrypoint.sh
COPY --chown=postgres:postgres paths.sh /paths.sh
COPY --chown=postgres:postgres lib/ /usr/local/lib/
# Make scripts executable
RUN chmod +x /entrypoint.sh
# Configure environment
ENV METRICS_PORT=9187 \
METRICS_USERNAME=admin \
METRICS_PASSWORD= \
POSTGRES_PORT=5432 \
PGDATA=/var/lib/postgresql/data
# Define volume
VOLUME ["/var/lib/postgresql/data"]
# Expose ports
EXPOSE 8080 5432
# Switch to postgres user
USER postgres
ENTRYPOINT ["/entrypoint.sh"]
CMD ["postgres"]