hypixel-auction-notifier/Dockerfile.db

11 lines
388 B
Text
Raw Normal View History

2025-01-07 07:10:04 +01:00
# Start from your desired Postgres version
FROM postgres:17.2
# Install the pg_cron package that matches your Postgres major version
RUN apt-get update && \
apt-get install -y postgresql-17-cron && \
rm -rf /var/lib/apt/lists/*
# Use the default entrypoint script so it starts Postgres normally
CMD ["docker-entrypoint.sh", "postgres", "-c", "shared_preload_libraries=pg_cron"]