| 1234567891011121314 |
- @echo off
- REM ============================================================
- REM LF-MRI Platform -- Universal updater
- REM - git pull
- REM - rebuild ALL Docker containers
- REM - health check
- REM
- REM Advanced usage (PowerShell):
- REM .\update.ps1 -RestartSpec -- also restart spectrometer
- REM .\update.ps1 -SkipGit -- skip git pull
- REM .\update.ps1 -Services orch,seq -- rebuild specific services only
- REM ============================================================
- powershell.exe -ExecutionPolicy Bypass -File "%~dp0update.ps1"
- pause
|