Open Source|All improvements go through Pull Requests with automated CI checks before review by@Leo-Galli|Join Discord|Contributing guide
Windows Installer CLI

Windows Installer — CLI reference

All command-line flags for the installer exe.

Flags

FlagEffect
--dir PATHTarget directory for the checkout
--depsInstall dependencies only
--softwareInstall the stack only
--bothDependencies + stack
--uninstallStop stack, remove volumes and app directory
--statusShow container state
--startdocker compose up -d
--stopdocker compose stop
--logsPrint last N log lines
--tail NLog lines for --logs (default 200)
--update-stackPull latest images + recreate
--updateSelf-update (asks twice)
--update-checkCheck if newer release exists
--db postgres|sqliteDatabase engine
--no-envSkip writing .env
--dry-runPrint commands without executing
--versionPrint version and exit

Examples

# Preview without touching the machine
aetheris-windows-installer --both --dry-run
 
# Full non-interactive install
aetheris-windows-installer --both --dir D:\aetheris
 
# Dependencies only
aetheris-windows-installer --deps
 
# Day-to-day management
aetheris-windows-installer --status
aetheris-windows-installer --start
aetheris-windows-installer --stop
aetheris-windows-installer --logs --tail 300
 
# Update
aetheris-windows-installer --update-stack
aetheris-windows-installer --update
 
# Tear down
aetheris-windows-installer --uninstall

See also: Setup, Development.