nself down
هذا المحتوى غير متوفر بلغتك بعد.
nself down
Section titled “nself down”Alias for
nself stop. Shuts down the ɳSelf stack.
Synopsis
Section titled “Synopsis”nself down [SERVICES...] [flags]Description
Section titled “Description”nself down is a hidden alias for cmd-stop. It is registered in cmd/commands/aliases.go and re-uses the same RunE handler as stopCmd. Flags, positional arguments, and behavior are identical.
Use either command interchangeably. down exists for muscle memory from docker compose down.
See cmd-stop for the full flag list (includes --graceful, --volumes, --rmi, --remove-orphans). The alias passes through every flag without modification.
Examples
Section titled “Examples”# Same as: nself stopnself down# Stop only specific servicesnself down postgres redis# Remove volumes (destroys data)nself down --volumes