feat(services): migrate Docker Compose configurations from GitLab

Migrate all docker-compose service configurations from legacy GitLab instance
to homelab repository for consolidation and version control.

Services migrated (6):
- bytestash: Code snippet management
- filebrowser: Web-based file browser
- gitlab: QoL scripts for NPM cert sync
- paperless-ngx: Document management with OCR
- portainer: Docker management UI
- speedtest-tracker: Internet speed test tracker

Changes:
- Add services/ directory with complete configurations
- Update .gitignore with Docker Compose exclusions
- Create comprehensive services/README.md documentation
- Document migration process in CLAUDE_STATUS.md

Migration details:
- Source: https://vulcan.apophisnetworking.net/jramos/homelab.git
- Files migrated: 10 files (6 compose + 3 utilities + 1 README)
- Total size: 84 KB
- Lines added: 836

Security notes:
- .env files excluded from git
- Hardcoded secrets identified in documentation
- Review and update secrets before deployment

Related: GitLab VM 101 decommissioning preparation

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-02 14:34:32 -07:00
parent 779ae2fb24
commit 3eea6b1b4e
15 changed files with 836 additions and 0 deletions

14
.gitignore vendored
View File

@@ -108,6 +108,20 @@ scripts/**/*.local.* # Local script variants
scripts/**/*_prod.* # Production script variants
scripts/**/fix_*_original.sh # Original unsanitized fix scripts
# Docker Compose Service Exclusions
# ---------------------------------
# Ignore runtime data and sensitive files in services directory
services/**/.env # Service environment files with secrets
services/**/.env.local # Local environment overrides
services/**/volumes/ # Docker volume mount directories
services/**/data/ # Data directories
services/**/*.log # Service log files
services/**/logs/ # Log directories
services/**/node_modules/ # Node.js dependencies in services
services/**/*.db # Database files
services/**/*.sqlite # SQLite database files
services/**/*.sqlite3 # SQLite3 database files
# Custom Exclusions
# ----------------
# Add any custom patterns specific to your homelab below: