- Configure Next.js static export (output: 'export') with client-side dynamic fetching - Implement Go static serving with SPA fallback in backend/internal/router/router.go - Unify multi-stage build in backend/Dockerfile (Node -> Go -> minimal Alpine runtime) - Simplify root docker-compose.yml to single anl-app service on port 8080 - Update REQUIREMENTS.md DM-03 and AC-17 normative contracts to v3.0 Unified Go Backend - Restore strict regression verification in Gate 9 (AC-35/36/37) and unittest suite - All Go unit tests, TypeScript type checks, ESLint, and E2E gates passed clean
34 lines
793 B
YAML
34 lines
793 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
anl-app:
|
|
build:
|
|
context: .
|
|
dockerfile: backend/Dockerfile
|
|
args:
|
|
- NEXT_PUBLIC_API_BASE_URL=${NEXT_PUBLIC_API_BASE_URL:-}
|
|
container_name: anl-app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${APP_PORT:-8080}:8080"
|
|
environment:
|
|
- HOST=0.0.0.0
|
|
- PORT=8080
|
|
- DB_PATH=/app/data/anl.db
|
|
- GIN_MODE=release
|
|
- CORS_ALLOW_ORIGINS=*
|
|
- AUTO_MIGRATE=true
|
|
- ADMIN_TOKEN=${ADMIN_TOKEN:?ADMIN_TOKEN must be set -- see .env.example}
|
|
volumes:
|
|
- anl-db-data:/app/data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8080/api/v1/health"]
|
|
interval: 15s
|
|
timeout: 3s
|
|
retries: 3
|
|
start_period: 5s
|
|
|
|
volumes:
|
|
anl-db-data:
|
|
name: anl-sqlite-storage
|