From 5d65aedef13daeca5f97261303e81280f69750dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=A4der?= Date: Mon, 21 Jun 2021 10:15:10 +0200 Subject: [PATCH] Updated Using Netbox Plugins (markdown) --- Using-Netbox-Plugins.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Using-Netbox-Plugins.md b/Using-Netbox-Plugins.md index 64faa48..5cbf467 100644 --- a/Using-Netbox-Plugins.md +++ b/Using-Netbox-Plugins.md @@ -1,4 +1,4 @@ -To utilise plugins that have been created by users within the [Netbox Community](https://github.com/netbox-community/netbox/wiki/Plugins) a custom image must be used. +To utilise plugins that have been created by users within the [NetBox Community](https://github.com/netbox-community/netbox/wiki/Plugins) a custom image must be used. Lets start with a fresh install of netbox-docker. @@ -13,9 +13,9 @@ ntc-netbox-plugin-onboarding ``` > NOTE: These must be on PyPi to work. -## Netbox Configuration +## NetBox Configuration -To get plugins to work within Netbox you need to add some configuration to `configuration.py`. +To get plugins to work within NetBox you need to add some configuration to `configuration.py`. ``` PLUGINS = ["netbox_onboarding"] @@ -25,7 +25,7 @@ PLUGINS = ["netbox_onboarding"] # } # } ``` -> NOTE: This can differ for every plugin. To learn more about this see the [Netbox documentation](https://netbox.readthedocs.io/en/stable/plugins/#enable-the-plugin). +> NOTE: This can differ for every plugin. To learn more about this see the [NetBox documentation](https://netbox.readthedocs.io/en/stable/plugins/#enable-the-plugin). ## Custom Docker File @@ -58,7 +58,7 @@ services: netbox-worker: image: netbox:latest-plugins ``` -This configuration will change the ports `Netbox` will use. It will also select the build file created in previous steps and tell the `netbox-worker` service to now use the new image (netbox:latest-plugins) that has been created. +This configuration will change the ports `netbox` will use. It will also select the build file created in previous steps and tell the `netbox-worker` service to now use the new image (`netbox:latest-plugins`) that has been created. ## Build and Deploy To build and deploy this in docker two commands are required.