> ## Documentation Index
> Fetch the complete documentation index at: https://astronomer.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# astro dev ps

<Info>The behavior and format of this command are the same for both Astro and Astro Private Cloud.</Info>

List all Docker containers running in your local Airflow environment, including the Airflow Webserver, Scheduler, and Postgres database. It outputs metadata for each running container, including `Container ID`, `Created`, `Status`, and `Ports`.

This command works similarly to [`docker ps`](https://docs.docker.com/engine/reference/commandline/ps/) and can only be run from a directory that is running an Astro project.

## Usage

```sh wrap theme={null}
astro dev ps
```

## Options

| Option          | Description                                                                                          | Possible Values                |
| --------------- | ---------------------------------------------------------------------------------------------------- | ------------------------------ |
| `--json`        | Output the response as JSON. Shorthand for `--output json`. Mutually exclusive with `-o`/`--output`. | None                           |
| `-o`,`--output` | Format the output. The default is `table`.                                                           | `table`, `json`, or `template` |
| `--template`    | Format the output using a Go template. Use with `--output template`.                                 | Any valid Go template string   |

## Related commands

* [`astro dev logs`](/docs/cli/v1.43/astro-dev-logs)
* [`astro dev run`](/docs/cli/v1.43/astro-dev-run)
