22 lines
429 B
YAML
22 lines
429 B
YAML
services:
|
|
backend:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile.backend
|
|
restart: unless-stopped
|
|
environment:
|
|
- PORT=80
|
|
- JWT_SECRET=${SERVICE_BASE64_64_JWT:-wochenplaner-jwt-secret}
|
|
volumes:
|
|
- wochenplaner_data:/app/data
|
|
|
|
frontend:
|
|
build:
|
|
context: .
|
|
dockerfile: frontend/Dockerfile
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
wochenplaner_data:
|
|
driver: local
|