update.bat 568 B

1234567891011121314
  1. @echo off
  2. REM ============================================================
  3. REM LF-MRI Platform -- Universal updater
  4. REM - git pull
  5. REM - rebuild ALL Docker containers
  6. REM - health check
  7. REM
  8. REM Advanced usage (PowerShell):
  9. REM .\update.ps1 -RestartSpec -- also restart spectrometer
  10. REM .\update.ps1 -SkipGit -- skip git pull
  11. REM .\update.ps1 -Services orch,seq -- rebuild specific services only
  12. REM ============================================================
  13. powershell.exe -ExecutionPolicy Bypass -File "%~dp0update.ps1"
  14. pause