Load Custom Plugins

Assuming you installed fylr via docker-compose.

  1. Have a plugin folder with fylr's unix user id:

mkdir plugins
chown 1000 plugins
  1. Connect the new folder via docker-compose.yml

  fylr:
    ...
    volumes:
      - "./plugins:/fylr/files/plugins/custom"
  1. Add the new plugin path to fylr.yml

fylr:
[...]
  plugin:
    # load plugins at startup. the loader crawls the given directories
    # and loads given files for plugin config files, ending in ".yml".
    # "*" and "?" are allowed as placeholders, unmatched directories or
    # files are silently skipped.
    paths:
      - "/fylr/files/plugins/custom"
      - [...other directory...]

Last updated