Skip to main content
Stops the application from the project root. It reads the app module’s package.json for the application name and runs docker compose down in modules/app to bring down the Docker services.

Usage

Examples

Run from the project root to stop the running Docker services:
--modules/--packages (aliases, comma-separated) accept the same module-name filter as app:start, but only to decide whether the stop proceeds: the command discovers every runnable module, narrows to the named ones, and only brings down Docker when at least one selected module is api or microservice. It always brings down the app module’s own docker-compose.yml — there’s no per-module Docker stack to target individually.
Without a matching api or microservice module in scope (for example --modules=some-spa), app:stop reports no Docker services to stop. Module processes started by app:start — the spa dev servers and hot-reloaded entrypoints — stop when you interrupt that process with Ctrl+C.

Options