# Photos

{% hint style="warning" %}
This API is likely change in future API versions. Key functionality will remain.
{% endhint %}

Photos taken taken by drone are stored in the directory `/data/shared_photos` on the host. In order to access the picutres in your app, map this directory into your docker container using the [compose override](/app-development/app-framework/compose-override.md) API as follows:

<pre class="language-yaml"><code class="lang-yaml"><strong>compose-override:
</strong><strong>    services:
</strong><strong>        &#x3C;my-service>:
</strong><strong>            volumes:
</strong>                - '/data/shared_photos:/shared_photos'
</code></pre>

{% hint style="info" %}
Note that this directory is shared with all apps and the system. Modifying files in this directory could conflict with other apps.
{% endhint %}


---

# 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.auterion.com/app-development/app-framework/photos.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.
