'NoneType' object has no attribute '_base_manager' after adding the plugin to netbox
Opened this issue · 0 comments
annguyenphucbao commented
- Download the release in: https://github.com/ffddorf/netbox-vault-secrets/releases
- Put that tarball downloaded in the root folder of netbox-docker
- I installed the release in Dockerfile-Plugin as below:
FROM netboxcommunity/netbox:latest
COPY ./netbox_vault_secrets-0.0.1.tar.gz /
RUN /opt/netbox/venv/bin/pip install --no-warn-script-location /netbox_vault_secrets-0.0.1.tar.gz
COPY configuration/configuration.py /etc/netbox/config/configuration.py
RUN SECRET_KEY="dummy" /opt/netbox/venv/bin/python /opt/netbox/netbox/manage.py collectstatic --no-input
- Then I add the plugin to the Netbox configuration
- Try building and start the netbox
I got below error:
Server Error
There was a problem with your request. Please contact an administrator.
The complete exception is provided below:
<class 'AttributeError'>
'NoneType' object has no attribute '_base_manager'
Python version: 3.10.6
NetBox version: 3.4.7