ADD: added dockerfiles and a logger for the backend

This commit is contained in:
hwinkel
2025-12-15 13:30:41 +01:00
parent 7ec17e1e8b
commit 435ad8e6e6
12 changed files with 183 additions and 19 deletions

24
docker-compose.yaml Normal file
View File

@@ -0,0 +1,24 @@
version: "3.9"
services:
backend:
build:
context: .
dockerfile: Dockerfile.backend
container_name: studia-backend
expose:
- "9090"
environment:
- PORT=9090
restart: unless-stopped
frontend:
build:
context: .
dockerfile: Dockerfile.frontend
container_name: studia-frontend
ports:
- "3000:3000"
depends_on:
- backend
restart: unless-stopped