> For the complete documentation index, see [llms.txt](https://docs.stoobly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.stoobly.com/guides/how-to-integrate-e2e-testing/how-to-stop-a-workflow/stopping-with-make.md).

# Stopping with Make

## Steps to Stop a Workflow

1. Run the workflow stop command in the root of the app directory

```sh
make -f .stoobly/services/Makefile <WORKFLOW-NAME>/down
```

For example:

```bash
make -f .stoobly/services/Makefile record/down
```

2. After running the command, the workflow containers should no longer be running:

```bash
$ docker ps
```

## Options

To see what options are available:

```bash
make -f .stoobly/services/Makefile record/down options="-h"
```
