Begin adding Postgresql support instead of filesystem flat files

This commit is contained in:
rmgr 2024-03-01 21:12:40 +10:30
parent b43343e0ee
commit 24ee04c0ff
6 changed files with 80 additions and 13 deletions

12
db/docker-compose.yaml Normal file
View file

@ -0,0 +1,12 @@
version: '3.9'
services:
postgres:
image: postgres:15.3-alpine
ports:
- 5432:5432
volumes:
- ./postgres:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=S3cret
- POSTGRES_DB=search