From 4acc202c49ee926125781a9022bd198cc297b587 Mon Sep 17 00:00:00 2001 From: Fizzlepoof Date: Tue, 12 May 2026 08:06:31 -0500 Subject: [PATCH] feat: add git-crypt secrets repo setup and docs - scripts/setup-secrets-repo.sh: replace dpkg-deb install with Docker method - dev/docker-compose.yaml: add git-crypt-init service (profile: setup) - docs/operations/SECRETS_MANAGEMENT.md: document git-crypt encrypted repo, unlock procedure, rebuild runbook, and TrueNAS install methods --- ai/docker-compose.yaml | 49 -------------------------- meshtastic/scripts/upgrade-watchdog.sh | 0 2 files changed, 49 deletions(-) mode change 100644 => 100755 meshtastic/scripts/upgrade-watchdog.sh diff --git a/ai/docker-compose.yaml b/ai/docker-compose.yaml index 45231b0..b7a2c86 100644 --- a/ai/docker-compose.yaml +++ b/ai/docker-compose.yaml @@ -105,52 +105,3 @@ services: extra_hosts: - "host.docker.internal:host-gateway" - whisper: - container_name: whisper - image: fedirz/faster-whisper-server:latest-cuda - restart: unless-stopped - networks: - - ai-net - - ai-services - ports: - - "8786:8000" - environment: - TZ: ${TZ} - WHISPER__MODEL: ${WHISPER_MODEL} - WHISPER__DEVICE: cuda - WHISPER__COMPUTE_TYPE: float16 - volumes: - - /mnt/docker-ssd/docker/appdata/whisper:/root/.cache/huggingface - deploy: - resources: - reservations: - devices: - - driver: nvidia - count: 1 - capabilities: [gpu] - - openclaw: - container_name: openclaw - image: ghcr.io/openclaw/openclaw:latest - restart: unless-stopped - networks: - - ai-net - - ai-services - - pangolin - ports: - - "18789:18789" - environment: - TZ: ${TZ} - OPENCLAW_GATEWAY_TOKEN: ${OPENCLAW_GATEWAY_TOKEN} - OPENCLAW_DISABLE_BONJOUR: "1" - volumes: - - /mnt/docker-ssd/docker/appdata/openclaw/config:/home/node/.openclaw - - /mnt/docker-ssd/docker/appdata/openclaw/workspace:/home/node/.openclaw/workspace - extra_hosts: - - "host.docker.internal:host-gateway" - healthcheck: - test: ["CMD-SHELL", "curl -sf http://127.0.0.1:18789/healthz || exit 1"] - interval: 30s - timeout: 10s - retries: 3 - start_period: 90s diff --git a/meshtastic/scripts/upgrade-watchdog.sh b/meshtastic/scripts/upgrade-watchdog.sh old mode 100644 new mode 100755