- Add comprehensive Tdarr troubleshooting and GPU transcoding documentation - Create /scripts directory for active operational scripts - Archive mapped node example in /examples for reference - Update CLAUDE.md with scripts directory context triggers - Add distributed transcoding patterns and NVIDIA troubleshooting guides - Enhance documentation structure with clear directory usage guidelines 🤖 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 |