dynamicweb2/postgres/Dockerfile

10 lines
341 B
Text
Raw Normal View History

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