claude-home/server-configs/akamai/docker-compose/sba-website/docker-compose.yml
Cal Corum cd614e753a CLAUDE: Add server-configs version control system
Introduces centralized configuration management for home lab:
- sync-configs.sh script for pull/push/diff/deploy operations
- hosts.yml inventory tracking 9 hosts (Proxmox, VMs, LXCs, cloud)
- Docker Compose files from all active hosts (sanitized)
- Proxmox VM and LXC configurations for backup reference
- .env.example files for services requiring secrets

All hardcoded secrets replaced with ${VAR} references.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-11 16:13:28 -06:00

22 lines
574 B
YAML

services:
sba-web:
image: manticorum67/sba-website:${VERSION:-latest}
ports:
- "803:80" # Use internal port since nginx proxy manager handles external routing
restart: unless-stopped
volumes:
- ./public:/usr/share/nginx/html/public
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:80/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
environment:
- NODE_ENV=production
networks:
- default
networks:
default:
driver: bridge