Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
1.0 KiB
Bash
Executable File
32 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Quick check of container services on r630-02
|
|
|
|
PROXMOX_HOST="${PROXMOX_HOST:-192.168.11.12}"
|
|
|
|
echo "=== Container Status Summary ==="
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct list" 2>&1
|
|
|
|
echo ""
|
|
echo "=== Key Services ==="
|
|
|
|
# Blockscout
|
|
echo "VMID 5000 (Blockscout):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 5000 -- systemctl is-active blockscout nginx docker 2>&1 | grep -v 'inactive'"
|
|
|
|
# Cloudflare
|
|
echo "VMID 102 (Cloudflare):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 102 -- systemctl is-active cloudflared 2>&1"
|
|
|
|
# Gitea
|
|
echo "VMID 104 (Gitea):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 104 -- systemctl is-active gitea 2>&1"
|
|
|
|
# Firefly nodes
|
|
echo "VMID 6200 (Firefly-1):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 6200 -- docker ps --format '{{.Names}}' 2>&1 | head -3"
|
|
|
|
echo "VMID 6201 (Firefly-ali-1):"
|
|
ssh -o StrictHostKeyChecking=no root@"$PROXMOX_HOST" "pct exec 6201 -- docker ps --format '{{.Names}}' 2>&1 | head -3"
|