first commit

This commit is contained in:
rsnrk 2024-04-30 14:32:37 +02:00
commit 5847fb0582
14 changed files with 543 additions and 0 deletions

7
Dockerfile_postgres Normal file
View file

@ -0,0 +1,7 @@
FROM postgres:16-bookworm
# Copy in the extensions script
COPY extensions_postgres.sh /docker-entrypoint-initdb.d/
# Set permissions
RUN chmod 755 /docker-entrypoint-initdb.d/extensions_postgres.sh