mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-12-10 13:52:38 +00:00
Including cumulus_napalm module
This is to add and allow a 3rd party module into Napalm specifically Cumulus Linux: https://github.com/napalm-automation-community/napalm-cumulus
This commit is contained in:
parent
c9d9c7349e
commit
021d3314da
|
|
@ -35,6 +35,12 @@ ARG BRANCH=master
|
|||
ARG URL=https://github.com/digitalocean/netbox/archive/$BRANCH.tar.gz
|
||||
RUN wget -q -O - "${URL}" | tar xz \
|
||||
&& mv netbox* netbox
|
||||
ARG CUMULUS_URL=https://github.com/napalm-automation-community/napalm-cumulus/archive/develop.tar.gz
|
||||
RUN wget -q -O - "${CUMULUS_URL}" | tar xz
|
||||
|
||||
WORKDIR /opt/napalm-cumulus-develop
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
|
||||
WORKDIR /opt/netbox
|
||||
RUN pip install -r requirements.txt
|
||||
|
|
|
|||
Loading…
Reference in a new issue