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>
30 lines
736 B
YAML
30 lines
736 B
YAML
services:
|
|
discord-app:
|
|
# image: manticorum67/major-domo-discordapp:1.5
|
|
image: manticorum67/major-domo-discordapp:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
# - ./storage:/usr/src/app/storage
|
|
# - ./logs:/usr/src/app/logs
|
|
- ./logs:/app/logs
|
|
- ./storage:/app/data
|
|
environment:
|
|
- PYTHONBUFFERED=0
|
|
- BOT_TOKEN=${BOT_TOKEN}
|
|
- GUILD_ID=${GUILD_ID}
|
|
- API_TOKEN=${API_TOKEN}
|
|
- TESTING=${TESTING}
|
|
- LOG_LEVEL=${LOG_LEVEL}
|
|
- TZ=${TZ}
|
|
- DB_URL=${DB_URL}
|
|
- HELP_EDITOR_ROLE_NAME=${HELP_EDITOR_ROLE_NAME}
|
|
- ENVIRONMENT=${ENVIRONMENT}
|
|
- OFFSEASON_FLAG=${OFFSEASON_FLAG}
|
|
networks:
|
|
- backend
|
|
|
|
networks:
|
|
backend:
|
|
driver: bridge
|
|
|