Initial commit

This commit is contained in:
Luka Romih
2022-12-07 04:43:36 +01:00
commit 257f3c354f
496 changed files with 55373 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM postgres:13
ENV PG_MAJOR 13
RUN apt-get update && \
apt-get install -y --no-install-recommends \
postgresql-$PG_MAJOR-pldebugger
COPY init /docker-entrypoint-initdb.d
COPY debugger-setup.sh /docker-entrypoint-initdb.d
# Run below in DB to enable the extension:
# CREATE EXTENSION pldbgapi;