Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 0c85082c authored by Diego MENDEZ's avatar Diego MENDEZ
Browse files

Reorganize files.

parent f264997d
No related branches found
No related tags found
No related merge requests found
FROM netboxcommunity/netbox:v4.1.1
FROM netboxcommunity/netbox:v4.1.6
RUN mkdir /opt/netbox/plugins
COPY requirements.txt /opt/netbox/plugins
COPY netbox_configuration/plugins.py /etc/netbox/config/plugins.py
COPY netbox_configuration/extra.py /etc/netbox/config/extra.py
COPY netbox_configuration/field_choices.py /etc/netbox/config/field_choices.py
COPY netbox_configuration/entrypoint.sh /usr/bin/netbox_plugin_entrypoint.sh
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY config/netbox/plugins.py /etc/netbox/config/plugins.py
COPY config/netbox/extra.py /etc/netbox/config/extra.py
COPY config/netbox/field_choices.py /etc/netbox/config/field_choices.py
COPY config/netbox/entrypoint.sh /usr/bin/netbox_plugin_entrypoint.sh
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN pip install -r /opt/netbox/plugins/requirements.txt
RUN rm -rf /opt/netbox/plugins
......
File moved
......@@ -104,8 +104,4 @@ DEFAULT_DASHBOARD = [
},
},
]
HTTP_PROXIES={
'http':'${HTTP_PROXY}',
'https':'${HTTPS_PROXY}',
}
PLUGINS = [
"netbox_dns",
"netbox_prometheus_sd",
"netbox_docker_plugin",
]
File moved
PLUGINS = [
"netbox_dns",
"netbox_prometheus_sd",
"netbox_docker_plugin",
"netbox_aci_plugin",
]
PLUGINS_CONFIG = {
"netbox_aci_plugin": {
# create default ACI Tenants "common", "infra", "mgmt" during migration
"create_default_aci_tenants": False,
},
}
......@@ -2,4 +2,5 @@ HOST: "localhost"
PORT: 8080
API_TOKEN: "only4testingpurpose"
CONTENT_TYPE: "application/json"
PLUGINS: ["rps", "netbox-dns", "cert", "prometheus-sd", "docker", "mac-address"]
#PLUGINS: ["rps", "netbox-dns", "cert", "prometheus-sd", "docker", "mac-address", "aci"]
PLUGINS: ["netbox-dns", "prometheus-sd", "docker"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment