> For the complete documentation index, see [llms.txt](https://docs.auterion.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.auterion.com/app-development/app-framework/photos.md).

# 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 %}
