Commit Graph

3 Commits

Author SHA1 Message Date
Luca Sacchi Ricciardi
9b90ed2169 feat(01-01): add environment reset script (reset-env.sh)
- Stops all containers and removes user-created networks/volumes
- Interactive mode requires user confirmation before destructive operations
- --dry-run flag shows what would be deleted without actually deleting
- Preserves Docker default networks (bridge, host, none)
- Does NOT remove Docker images
- Color-coded output and clear warning messages
- Exit code 0 on success, 1 on cancellation or error

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 19:52:24 +01:00
Luca Sacchi Ricciardi
f9a3e1e342 feat(01-01): add compose validation script (validate-compose.sh)
- Validates docker-compose.yml syntax using 'docker compose config'
- Shows usage when called without arguments
- Handles missing files gracefully with clear error messages
- Supports -h/--help flag
- Color-coded output (green success, red error)
- Exit code 0 on valid config, 1 on errors

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 19:51:39 +01:00
Luca Sacchi Ricciardi
a60a9abe3d feat(01-01): add environment check script (check-env.sh)
- Verifies Docker Engine >= 24.0, Compose V2, network utilities
- Reports system resources (RAM, CPU cores) with warnings if low
- Color-coded output (green pass, red fail, yellow warn)
- Exit code 0 on all checks pass, 1 on failures
- Idempotent - can be run multiple times safely

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 19:51:00 +01:00