Load Custom Plugins
Assuming you installed fylr via docker-compose.
Have a plugin folder with fylr's unix user id:
mkdir plugins
chown 1000 pluginsConnect the new folder via
docker-compose.yml
fylr:
...
volumes:
- "./plugins:/fylr/files/plugins/custom"Add the new plugin path to
fylr.yml
fylr:
[...]
plugin:
# load plugins at startup. each entry is a literal directory, searched
# recursively for "manifest.yml" files — one plugin per manifest.
# a directory that does not exist is logged as a warning and skipped.
paths:
- "/fylr/files/plugins/custom"
- [...other directory...]Last updated