From 158edb5da99f17104019945383007db33d20ab87 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Fri, 29 Jan 2021 16:04:09 +0100 Subject: [PATCH] Removed NOTE for virtual env because 1.0.0 was releases --- Using-Netbox-Plugins.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Using-Netbox-Plugins.md b/Using-Netbox-Plugins.md index 511ec20..a8fb918 100644 --- a/Using-Netbox-Plugins.md +++ b/Using-Netbox-Plugins.md @@ -44,10 +44,8 @@ RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requi ``` version: '3.4' services: - nginx: - ports: - - 8000:8080 netbox: + - 8000:8080 build: context: . dockerfile: Dockerfile-Plugins @@ -56,7 +54,6 @@ services: image: netbox:latest-plugins ``` This configuration will change the ports `NGINX` 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. -> NOTE: From **version 0.28.0** the Nginx container is not used anymore. The port mapping must be configured for the Netbox service. ## Build and Deploy To build and deploy this in docker two commands are required.