Begin adding Postgresql support instead of filesystem flat files
This commit is contained in:
parent
b43343e0ee
commit
24ee04c0ff
6 changed files with 80 additions and 13 deletions
12
db/docker-compose.yaml
Normal file
12
db/docker-compose.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue