Add schemas for development databases

These schemas need to be imported for development purposes.

Update Database schemas, add docker compose
This commit is contained in:
Will Nilges 2021-10-02 17:26:08 -04:00
parent b3300de18e
commit 262b5b10eb
12 changed files with 34892 additions and 5 deletions

View file

@ -0,0 +1,6 @@
FROM postgres:12
RUN apt-get update \
&& apt-get install -y postgresql-plperl-12 \
&& apt-get install -y postgresql-plpython3-12 \
&& rm -rf /var/lib/apt/lists/*