feat: initial project setup with Next.js, Prisma, Docker

This commit is contained in:
Homelab NetMap
2025-11-13 19:31:01 +01:00
commit 0656ca9709
21 changed files with 7328 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: '3.8'
services:
db:
image: postgres:15
environment:
POSTGRES_DB: homelab_netmap
POSTGRES_USER: user
POSTGRES_PASSWORD: password
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: