Initial commit

This commit is contained in:
Markus Thielker 2024-03-08 20:24:40 +01:00 committed by GitHub
commit 52aed24a96
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
48 changed files with 6980 additions and 0 deletions

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

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

View file

@ -0,0 +1,19 @@
services:
postgres:
container_name: base_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: base
volumes:
- ./postgres-data:/var/lib/postgresql/data