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
:
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
Map the folder into the fylr container.
docker-compose.yml:
services:
fylr:
volumes:
- "/srv/fylr/_hotfolder:/fylr/_hotfolder"
Set
webDAVHotfolderPath
in your fylr.yml. Note this path is inside the container.
fylr:
services:
api:
webDAVHotfolderPath: "/fylr/_hotfolder"
Recreate your fylr container.
Visit the fylr frontend and activate the hotfolder:

Last updated