This commit is contained in:
Bastian Wagner
2026-07-15 14:09:28 +02:00
commit 3e5348b7ec
104 changed files with 30367 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
api:
build:
context: .
dockerfile: apps/api/Dockerfile
env_file:
- .env
ports:
- "3000:3000"
web:
build:
context: .
dockerfile: apps/web/Dockerfile
environment:
API_BASE_URL: http://localhost:3000
ports:
- "4200:80"
depends_on:
- api