Files
aliasvault/Dockerfile.postgres
2024-12-21 11:56:08 +01:00

6 lines
201 B
Docker

FROM postgres:16-alpine
# Add any custom PostgreSQL configurations if needed
COPY postgresql.conf /etc/postgresql/postgresql.conf
CMD ["postgres", "-c", "config_file=/etc/postgresql/postgresql.conf"]