> For the complete documentation index, see [llms.txt](https://docs.fylr.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fylr.io/for-system-administrators/integration/hotfolder.md).

# Hotfolder

Assuming you use a docker-compose.yml file and your hotfolder will be located at `/srv/fylr/_hotfolder`:

1. Create on your fylr instance the directory and change its permissions. The user permissions must be the same as the one your fylr runs.

```bash
mkdir /srv/fylr/_hotfolder
chown 1000 /srv/fylr/_hotfolder
```

2. Map the folder into the fylr container.

docker-compose.yml:

```yaml
services:
  fylr:
    volumes:
      - "/srv/fylr/_hotfolder:/fylr/_hotfolder"
```

3. Set `webDAVHotfolderPath` in your fylr.yml. Note this path is inside the container.

```yaml
fylr:
  services:
    api:
      webDAVHotfolderPath: "/fylr/_hotfolder"
```

4. Recreate your fylr container.
5. Visit the fylr frontend and activate the hotfolder:

![Image](/files/K1QuuIwOSaBYc06fgGjO)
