basic db setup with drizzle

This commit is contained in:
Oliver Bryan
2025-12-07 22:55:02 +00:00
parent 7c43971087
commit 87e03b2a62
14 changed files with 475 additions and 15 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
db:
image: postgres:16-alpine
container_name: eussi-db
restart: always
environment:
POSTGRES_USER: eussi
POSTGRES_PASSWORD: password
POSTGRES_DB: issue
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: