Removed NOTE for virtual env because 1.0.0 was releases

Tobias Genannt 2021-01-29 16:04:09 +01:00
parent 63a2b617e1
commit 158edb5da9

@ -44,10 +44,8 @@ RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requi
``` ```
version: '3.4' version: '3.4'
services: services:
nginx:
ports:
- 8000:8080
netbox: netbox:
- 8000:8080
build: build:
context: . context: .
dockerfile: Dockerfile-Plugins dockerfile: Dockerfile-Plugins
@ -56,7 +54,6 @@ services:
image: netbox:latest-plugins 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. 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 ## Build and Deploy
To build and deploy this in docker two commands are required. To build and deploy this in docker two commands are required.