# Podman

Our containerized scanners support podman and you can perform scans by invoking the tool and following up with the supported flags that our scanners offer.&#x20;

Here follows an example script that you can use to launch the IAC scanner's analysis

{% tabs %}
{% tab title="Linux" %}

```
podman pull docker.io/meterian/isaac:latest

# export your token in your env
export METERIAN_API_TOKEN=f806cd0a-3e00-46f0-b9a9-1bd7XXXXXXXX

#Run the Scan
podman run --rm -it \
    --volume /path/to/your/project:/workspace/YOUR_PROJECT_NAME_HERE \
    --workdir /workspace/YOUR_PROJECT_NAME_HERE \
    --env METERIAN_API_TOKEN=$METERIAN_API_TOKEN \
    docker.io/meterian/isaac [ your additional args ]
```

{% endtab %}

{% tab title="Windows" %}

```
podman pull docker.io/meterian/isaac:latest

# export your token in your env
$env:METERIAN_API_TOKEN = 'f806cd0a-3e00-46f0-b9a9-1bd7XXXXXXXX'

#Run the Scan
podman run --rm -it `
    --volume /path/to/your/project:/workspace/YOUR_PROJECT_NAME_HERE `
    --workdir /workspace/YOUR_PROJECT_NAME_HERE `
    --env METERIAN_API_TOKEN=$env:METERIAN_API_TOKEN `
    docker.io/meterian/isaac [ your additional args ]
```

{% endtab %}
{% endtabs %}

A comprehensive list of flags can be found here:

* [Container scanner flags](/containers-support/container-scanner/command-line-parameters.md)
* [IAC scanner flags](/iac-scanner/command-line-parameters.md)
* [SAST scanner flags](https://docs.meterian.io/sast-scanner/command-line-parameters)

#### Meterian convenience scripts

We've provided a set of scripts that you can use to perform analyses if podman is you container engine tool of choice:

* [Container scanner convenience scripts](https://github.com/MeterianHQ/docker-scanner-engine/tree/master/podman)
* [SAST scanner convenience scripts](https://github.com/MeterianHQ/sasha-scanner/tree/main/podman)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.meterian.io/containerized-scanners/podman.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
