Add backend setup with Docker, Express, and error handling page

This commit is contained in:
2025-09-25 13:52:10 +02:00
parent 6eb40bb0ef
commit 77d51fd243
6 changed files with 207 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
services:
fallback-backend:
container_name: fallback-backend
build: ./backend
ports:
- "8002:8002"
volumes:
- ./backend:/fallback-backend
restart: unless-stopped