Adding a Napalm Driver #380
-
Hello community! Today I wanted to try out the napalm integration. I was successful for many of our devices (mainly Cisco devices) but when I tried for our fortigate devices I ended up having an error thrown saying that the napalm driver fortios wasn't found. I took a look at the dockerfile and found out that only napalm was installed but not the backend library pyFG. Can it be added upstream or is there a solution so that I can add it for my installation? Have a good day and thanks :D |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can enhance the image yourself. It's briefly documented here: https://github.com/netbox-community/netbox-docker/wiki/Build#enhance-the-image Probably it's something along the lines of the following example, though I have not tested this: FROM netboxcommunity/netbox:v2.x.x # change to the version you're using
RUN pip install pyFG |
Beta Was this translation helpful? Give feedback.
You can enhance the image yourself. It's briefly documented here: https://github.com/netbox-community/netbox-docker/wiki/Build#enhance-the-image
Probably it's something along the lines of the following example, though I have not tested this: