added netbox topology plugin
This commit is contained in:
parent
61a3afbb3b
commit
b6c53fa09e
4
Dockerfile-Plugins
Normal file
4
Dockerfile-Plugins
Normal file
@ -0,0 +1,4 @@
|
||||
FROM netboxcommunity/netbox:latest
|
||||
|
||||
COPY ./plugin_requirements.txt /
|
||||
RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requirements.txt
|
@ -192,7 +192,7 @@ NAPALM_ARGS = {}
|
||||
PAGINATE_COUNT = int(environ.get('PAGINATE_COUNT', 50))
|
||||
|
||||
# Enable installed plugins. Add the name of each plugin to the list.
|
||||
PLUGINS = []
|
||||
PLUGINS = [ "netbox_topology_views" ]
|
||||
|
||||
# Plugins configuration settings. These settings are used by various plugins that the user may have installed.
|
||||
# Each key in the dictionary is the name of an installed plugin and its value is a dictionary of settings.
|
||||
|
1
plugin_requirements.txt
Normal file
1
plugin_requirements.txt
Normal file
@ -0,0 +1 @@
|
||||
netbox-topology-views
|
Reference in New Issue
Block a user