add docker and prisma

This commit is contained in:
Cesar
2026-05-22 15:27:58 -06:00
parent 0ea46e1f76
commit 397c2ef3df
10 changed files with 1467 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
version: '3.8'
services:
postgres-db:
image: postgres:15.3
restart: always
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- ./postgres:/var/lib/postgresql/data
ports:
- 5433:5432