- Azure AD authentication via MSAL PublicClientApplication with PKCE flow - Session middleware, auth middleware, login/callback/logout routes - Dockerfile, docker-compose.yml for port 8569, output volume - Idempotent deploy.sh with static file copy and health wait - User nav bar in base template with Sign Out link Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
433 B
YAML
20 lines
433 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: pimco-charts:latest
|
|
container_name: pimco-charts
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:8569:8569"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./output:/app/output
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8569/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 15s
|