# Installing OpenStack CLI Client on Docker

You can run the required OpenStack commands directly on a Docker Container. For this, you must download the OpenStack CLI Docker container.

{% hint style="info" %}
**Info**

**Note:** You must first install Docker on the host, to be able to run OpenStack commands in a Docker container. Refer to <https://docs.docker.com/engine/installation/> for information on Docker installation.
{% endhint %}

Follow the steps given below to download the OpenStack CLI for Docker.

1\. Download the OpenStack RC file from the Clarity UI, and save it as `openstack.rc`.

2\. Convert the file to a usable Docker environment file.

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

```bash
# BSD sed (i.e., macOS)
sed -i '' -E "s/(^export |[\"'$\{}]|OS_PROJECT_DOMAIN_ID:-)//g" openstack.rc
# GNU sed (i.e., Linux)
sed --in-place --regexp-extended "s/(^export |[\"'$\{}]|OS_PROJECT_DOMAIN_ID:-)//g" openstack.rc
```

{% endtab %}
{% endtabs %}

3\. Download the OpenStack CLI container.

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

```bash
docker pull platform9/openstack-cli
```

{% endtab %}
{% endtabs %}

4\. Run the following command to start the container.

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

```bash
docker run --env-file openstack.rc -it platform9/openstack-cli
```

{% endtab %}
{% endtabs %}

You are now ready to run OpenStack CLI commands directly from within a Docker container.


---

# 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.platform9.com/managed-openstack/5.8/cli-access/cli-access-install-cli-docker.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.
