added prisma and db

This commit is contained in:
PxlLoewe
2025-01-17 00:24:09 +01:00
parent 9315454159
commit 0344e1b51a
5 changed files with 79 additions and 0 deletions

18
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,18 @@
# docker-compose.dev.yml
version: '3.8'
services:
postgres:
image: postgres:13
container_name: dev-postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
POSTGRES_DB: mydb
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: