Initial commit: portal

This commit is contained in:
jtricerolph 2026-07-01 12:09:54 +00:00
commit b54081113b
18 changed files with 736 additions and 0 deletions

10
docker-compose.yml Normal file
View file

@ -0,0 +1,10 @@
services:
portal:
build: .
ports:
- "${FRONTEND_PORT:-3000}:80"
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost/health 2>/dev/null || wget -qO- http://localhost/ > /dev/null && echo ok || exit 1"]
interval: 15s
retries: 3