Fernando K pushed to branch main at Root / Serviços / Netbox
Commits:
-
b2c587cc
by Fernando Monteiro Kiotheka at 2025-08-15T13:55:47-03:00
2 changed files:
Changes:
... | ... | @@ -6,6 +6,7 @@ COPY plugin-requirements.txt /opt/netbox/plugin-requirements.txt |
6 | 6 | RUN /usr/local/bin/uv pip install -r /opt/netbox/plugin-requirements.txt
|
7 | 7 | |
8 | 8 | # These lines are only required if your plugin has its own static files.
|
9 | +COPY configuration.py /opt/netbox/netbox/configuration.py
|
|
9 | 10 | RUN DEBUG="true" SECRET_KEY="dummydummydummydummydummydummydummydummydummydummy" \
|
10 | 11 | /opt/netbox/venv/bin/python /opt/netbox/netbox/manage.py collectstatic --no-input
|
11 | 12 |
1 | +PLUGINS = [
|
|
2 | + "netbox_dns",
|
|
3 | + "netbox_floorplan",
|
|
4 | + "netbox_documents",
|
|
5 | + "netbox_topology_views",
|
|
6 | + "netbox_proxmox_import",
|
|
7 | + "netbox_backups",
|
|
8 | +] |