Complete restructure from patterns/examples/reference to technology-focused directories: • Created technology-specific directories with comprehensive documentation: - /tdarr/ - Transcoding automation with gaming-aware scheduling - /docker/ - Container management with GPU acceleration patterns - /vm-management/ - Virtual machine automation and cloud-init - /networking/ - SSH infrastructure, reverse proxy, and security - /monitoring/ - System health checks and Discord notifications - /databases/ - Database patterns and troubleshooting - /development/ - Programming language patterns (bash, nodejs, python, vuejs) • Enhanced CLAUDE.md with intelligent context loading: - Technology-first loading rules for automatic context provision - Troubleshooting keyword triggers for emergency scenarios - Documentation maintenance protocols with automated reminders - Context window management for optimal documentation updates • Preserved valuable content from .claude/tmp/: - SSH security improvements and server inventory - Tdarr CIFS troubleshooting and Docker iptables solutions - Operational scripts with proper technology classification • Benefits achieved: - Self-contained technology directories with complete context - Automatic loading of relevant documentation based on keywords - Emergency-ready troubleshooting with comprehensive guides - Scalable structure for future technology additions - Eliminated context bloat through targeted loading 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
879 B
YAML
28 lines
879 B
YAML
version: "3.4"
|
|
services:
|
|
tdarr-node:
|
|
container_name: tdarr-node-local-cpu
|
|
image: ghcr.io/haveagitgat/tdarr_node:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=America/Chicago
|
|
- UMASK_SET=002
|
|
- nodeName=local-workstation-cpu
|
|
- serverIP=192.168.1.100 # Replace with your Tdarr server IP
|
|
- serverPort=8266
|
|
- inContainer=true
|
|
- ffmpegVersion=6
|
|
volumes:
|
|
# Media access (same as server)
|
|
- /mnt/media:/media # Replace with your media path
|
|
# Local transcoding cache
|
|
- ./temp:/temp
|
|
# Resource limits for CPU transcoding
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '14' # Leave some cores for system (16-core = use 14)
|
|
memory: 32G # Generous for 4K transcoding
|
|
reservations:
|
|
cpus: '8' # Minimum guaranteed cores
|
|
memory: 16G |