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>
20 lines
356 B
YAML
20 lines
356 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
database:
|
|
image: postgres
|
|
restart: unless-stopped
|
|
shm_size: 128mb
|
|
environment:
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- /home/cal/postgres-data:/var/lib/postgresql/data
|
|
|
|
adminer:
|
|
image: adminer
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:8080
|