This commit is contained in:
Bastian Wagner
2026-06-16 12:15:29 +02:00
commit 38141c0358
80 changed files with 23444 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
api:
build:
context: ./api
env_file:
- .env
ports:
- "${PORT:-3000}:3000"
restart: unless-stopped
client:
build:
context: ./client
ports:
- "8080:80"
depends_on:
- api
restart: unless-stopped