feat: Add docker-compose

This commit is contained in:
2025-09-25 11:58:23 +02:00
parent 9c6b194b3a
commit 743611a889

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '3'
services:
postgres-db:
image: postgres:15
container_name: postgres-db
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=grades
ports:
- "5432:5432"