mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
18 lines
311 B
YAML
18 lines
311 B
YAML
version: '3.8'
|
|
services:
|
|
frontend:
|
|
build: ./frontend
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- backend
|
|
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- "3001:3001"
|
|
environment:
|
|
- DATABASE_URL=file:./dev.db
|
|
- JWT_SECRET=your-secret-key
|
|
|
|
# Später: Database service hinzufügen |