Scaffold Docker-only Node 24 + TypeScript EJS web backend

This commit is contained in:
2026-06-14 11:45:30 +02:00
commit 4eed701419
25 changed files with 2443 additions and 0 deletions

10
compose.yml Normal file
View File

@@ -0,0 +1,10 @@
# Base / production config. Run alone with: docker compose -f docker-compose.yml up
# Plain `docker compose up` also merges docker-compose.override.yml for development.
services:
web:
build: .
ports:
- "3000:3000"
environment:
NODE_ENV: production
restart: unless-stopped