2023-12-13 10:45:07 +05:30
|
|
|
# Use the official PostgreSQL image from the Docker Hub
|
|
|
|
FROM postgres:latest
|
|
|
|
|
|
|
|
# Copy custom configuration file to PostgreSQL configuration directory
|
2023-12-13 20:01:07 +05:30
|
|
|
COPY ./postgresql.conf /etc/postgresql/postgresql.conf
|
2023-12-13 10:45:07 +05:30
|
|
|
|
|
|
|
# Set the Unix socket directory
|
|
|
|
RUN echo "unix_socket_directories = '/var/run/postgresql'" >> /etc/postgresql/postgresql.conf
|
|
|
|
|