mirror of
https://codeberg.org/MarkusThielker/finances.git
synced 2025-07-01 19:19:18 +00:00
N-FIN-1: customise template
This commit is contained in:
parent
52aed24a96
commit
b9bdf36872
12 changed files with 29 additions and 54 deletions
1
docker/finances-dev/.gitignore
vendored
Normal file
1
docker/finances-dev/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
postgres-data/
|
19
docker/finances-dev/docker-compose.yaml
Normal file
19
docker/finances-dev/docker-compose.yaml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue