N-FIN-1: customise template

This commit is contained in:
Markus Thielker 2024-03-08 21:54:36 +01:00
parent 52aed24a96
commit b9bdf36872
No known key found for this signature in database
12 changed files with 29 additions and 54 deletions

1
docker/finances-dev/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
postgres-data/

View file

@ -0,0 +1,19 @@
services:
postgres:
container_name: next_finances_postgres
image: postgres:15.2
restart: always
healthcheck:
test: [ "CMD-SHELL", "pg_isready" ]
interval: 10s
timeout: 5s
retries: 5
ports:
- 127.0.0.1:5432:5432
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
POSTGRES_DB: finances
volumes:
- ./postgres-data:/var/lib/postgresql/data