cmd down - nself-org/cli GitHub Wiki

nself down

Alias for nself stop. Shuts down the ɳSelf stack.

Synopsis

nself down [SERVICES...] [flags]

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.

Flags

See cmd-stop for the full flag list (includes --graceful, --volumes, --rmi, --remove-orphans). The alias passes through every flag without modification.

Examples

# Same as: nself stop
nself down
# Stop only specific services
nself down postgres redis
# Remove volumes (destroys data)
nself down --volumes

See Also

← [Commands]] ](/nself-org/cli/wiki/[[Home) →