Hotfolder

This section discribes how to integrate the 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.

mkdir /srv/fylr/_hotfolder
chown 1000 /srv/fylr/_hotfolder
  1. Map the folder into the fylr container.

docker-compose.yml:

services:
  fylr:
    volumes:
      - "/srv/fylr/_hotfolder:/fylr/_hotfolder"
  1. Set webDAVHotfolderPath in your fylr.yml. Note this path is inside the container.

fylr:
  services:
    api:
      webDAVHotfolderPath: "/fylr/_hotfolder"
  1. Recreate your fylr container.

  2. Visit the fylr frontend and activate the hotfolder:

Last updated