Compare commits

...

2 Commits

Author SHA1 Message Date
409
b12a768d94 add compose.yaml 2025-07-08 00:03:29 +02:00
409
6e02b4156a update to postgres 17 2025-07-08 00:03:21 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
FROM postgres
FROM postgres:17
RUN apt-get update
RUN apt-get install -y --no-install-recommends postgresql-16-cron
RUN apt-get install -y --no-install-recommends postgresql-17-cron
# Clean up
RUN rm -rf /var/lib/apt/lists/*

5
compose.yaml Normal file
View File

@@ -0,0 +1,5 @@
services:
postgres-cron:
image: 'git.409dev.online/409/postgres-cron'
container_name: 'postgres-cron'
build: '.'