Files
postgres-cron/Dockerfile
2025-07-08 00:03:21 +02:00

13 lines
333 B
Docker

FROM postgres:17
RUN apt-get update
RUN apt-get install -y --no-install-recommends postgresql-17-cron
# Clean up
RUN rm -rf /var/lib/apt/lists/*
COPY ./my-postgres.conf /etc/postgresql.conf
COPY ./initdb-pg_cron.sql /docker-entrypoint-initdb.d/10_pg_cron.sql
EXPOSE 5432
CMD ["postgres", "-c", "config_file=/etc/postgresql.conf"]