nkapp start
Start stopped services without recreating their containers.
nkapp start [services...] [options]Arguments
| Argument | Type | Description |
|---|---|---|
services | string[] | Optional list of service names to start. If omitted, starts all services. |
Options
| Flag | Type | Default | Description |
|---|---|---|---|
-e, --env <env> | string | local | Target environment |
Remote Support
For remote environments, Nanokit automatically establishes an SSH tunnel to the target host before issuing start commands to the remote Docker daemon.
Examples
# Start all services in local environment
nkapp start
# Start specific services
nkapp start api worker
# Start staging services
nkapp start -e stage[!NOTE]
nkapp startwill only start services that have already been created (e.g. stopped viankapp stop). If the container does not exist yet, usenkapp upinstead.