You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Load data from YAML files into Netbox
6
6
7
7
First activate your virtual environment where Netbox is installed, the install the plugin version correspondig to your Netbox version.
8
8
```bash
9
-
pip install "netbox-initializers==3.7.*"
9
+
pip install "netbox-initializers==4.0.*"
10
10
```
11
11
Then you need to add the plugin to the `PLUGINS` array in the Netbox configuration.
12
12
```python
@@ -36,6 +36,6 @@ The initializers where a part of the Docker image and where then extracted into
36
36
To use the new plugin in a the Netbox Docker image, it musst be installad into the image. To this, the following example can be used as a starting point:
37
37
38
38
```dockerfile
39
-
FROM netboxcommunity/netbox:v3.7
40
-
RUN /opt/netbox/venv/bin/pip install "netbox-initializers==3.7.*"
39
+
FROM netboxcommunity/netbox:v4.0
40
+
RUN /opt/netbox/venv/bin/pip install "netbox-initializers==4.0.*"
0 commit comments