# 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"
```
