From 0519796af6f2182ebb61f15d6b8b0655f0da77aa Mon Sep 17 00:00:00 2001 From: Hedde van der Heide Date: Mon, 28 Mar 2022 12:35:32 +0200 Subject: [PATCH] Update README.rst --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 1b5dca3..774aec2 100644 --- a/README.rst +++ b/README.rst @@ -15,18 +15,18 @@ instructions to clone the netbox-docker repo and set up the ``docker-compose.override.yml``. Next, follow these instructions (based on the generic `Netbox plugin -instructions `__) +instructions `__) to install the Netbox SLM plugin: 1. Add ``netbox_slm`` to the ``PLUGINS`` list in - ``configuration/configuration.py``. -2. Create a ``plugin_requirements.txt`` with ``netbox-slm==0.93`` as + ``configuration/extra.py``. +2. Create a ``plugin_requirements.txt`` with ``netbox-slm==0.94`` as contents. 3. Create a ``Dockerfile-SLM`` with contents: .. code:: dockerfile - FROM netboxcommunity/netbox:v3.0.9 # The Netbox SLM plugin currently only works with v3.0.9 of Netbox due to backwards incompatible changes in newer version of Netbox + FROM netboxcommunity/netbox:v3.X.X COPY ./plugin_requirements.txt / RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requirements.txt