Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,22 @@ will be removed and yours will be used.
> [!WARNING]
> Container has to be restarted to propagate changes.

### Add a LibreNMS plugin package

To add a [plugin package](https://docs.librenms.org/Extensions/Plugin-System/#plugin-package),
build your own image on top of the official image:

```dockerfile
FROM librenms/librenms:latest
RUN gosu librenms ./lnms plugin:add socialiteproviders/saml2
```

```console
$ docker build -t librenms-with-plugins .
```

Use this image instead of `librenms/librenms` in your `compose.yml`.

### Additional Monitoring plugins

You can add a custom Monitoring plugin in `/data/monitoring-plugins/`.
Expand Down