claude-home/server-configs/strat-database/docker-compose/pd-database/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

39 lines
910 B
YAML

version: '3'
services:
# database:
# build: ./database
# restart: unless-stopped
# container_name: pd_database
# volumes:
# - ./storage:/usr/src/app/storage
# - ./logs:/usr/src/app/logs
# ports:
# - 811:80
# environment:
# - TESTING=False
# - LOG_LEVEL=INFO
# - API_TOKEN=${API_TOKEN}
# - TZ=America/Chicago
# - WORKERS_PER_CORE=1.5
# # - PYTHONHASHSEED=1749583062
database-v2:
# build: ./database-v2
image: manticorum67/paper-dynasty-database:1.5
restart: unless-stopped
container_name: pd_database_v2
volumes:
- ./storage:/usr/src/app/storage
- ./logs:/usr/src/app/logs
ports:
- 815:80
environment:
- TESTING=False
- LOG_LEVEL=INFO
- API_TOKEN=${API_TOKEN}
- TZ=America/Chicago
- WORKERS_PER_CORE=1.5
- WORKER_TIMEOUT=180
- TIMEOUT=180