mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2026-03-22 08:16:54 +00:00
28 lines
596 B
Python
28 lines
596 B
Python
# Add your plugins and plugin settings here.
|
|
# Of course uncomment this file out.
|
|
|
|
# To learn how to build images with your required plugins
|
|
# See https://github.com/netbox-community/netbox-docker/wiki/Using-Netbox-Plugins
|
|
|
|
# PLUGINS = ["netbox_bgp"]
|
|
|
|
# PLUGINS_CONFIG = {
|
|
# "netbox_bgp": {
|
|
# ADD YOUR SETTINGS HERE
|
|
# }
|
|
# }
|
|
|
|
|
|
PLUGINS = [
|
|
"netbox_topology_views",
|
|
"netbox_lifecycle",
|
|
"netbox_prometheus_sd",
|
|
"netbox_qrcode",
|
|
]
|
|
|
|
PLUGINS_CONFIG = {
|
|
# Beispiel für Topology Views, falls nötig:
|
|
# "netbox_topology_views": {
|
|
# "some_setting": "value"
|
|
# }
|
|
} |