From 856f49148c287c1c0c48dd50651d9abfeccbe606 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Thu, 1 Sep 2022 12:59:14 +0200 Subject: [PATCH] Initializers were moved to plugin --- Build.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Build.md b/Build.md index 670d1e6..07eb751 100644 --- a/Build.md +++ b/Build.md @@ -1,7 +1,7 @@ This document describes two different intentions: - *Extend the image*: Adjust the existing Docker image to the needs of your organization. - This can reduce the number of environment variables you have to configure or you can ship a default configuration by embedding your _initializer_ yaml files. + This can reduce the number of environment variables you have to configure. - *Build the image from scratch*: This is mostly useful to you when you work on `netbox-docker` itself. ## Which build do you need? @@ -24,8 +24,6 @@ This usually works by using the `netboxcommunity/netbox` image as base image: FROM netboxcommunity/netbox:v2.6.6 COPY my_configuration.py /etc/netbox/config/configuration.py -COPY my_startup_scripts/ /opt/netbox/startup_scripts/ -COPY my_initializers/ /opt/netbox/initializers/ COPY my_reports/ /etc/netbox/reports/ COPY my_scripts/ /etc/netbox/scripts ```