Defaults to 'Number Four at Stow'. Replaces hardcoded 'Hotel Number Four' and 'HNF Manage' in sidebar, login page, and browser title. Other hotels set VITE_HOTEL_NAME in their /opt/portal/.env before rebuilding. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
15 lines
439 B
YAML
15 lines
439 B
YAML
services:
|
|
portal:
|
|
build:
|
|
context: .
|
|
args:
|
|
VITE_HOTEL_NAME: ${VITE_HOTEL_NAME:-Number Four at Stow}
|
|
security_opt:
|
|
- apparmor=unconfined
|
|
ports:
|
|
- "${FRONTEND_PORT:-3000}:80"
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1/health 2>/dev/null || wget -qO- http://127.0.0.1/ > /dev/null && echo ok || exit 1"]
|
|
interval: 15s
|
|
retries: 3
|