The premier source of truth powering network automation. Open source under Apache 2. Try NetBox Cloud free: https://netboxlabs.com/products/free-netbox-cloud/
Go to file
Robert Drake 6ed33af063 Changes to Dockerfile to make the build faster
To download a new version with docker, I've been running

	git pull
	docker-compose build --no-cache

This is slow, but no-cache is needed so that "git clone" pulls the
latest copy.

Most of the slowness comes from pulling down apt files each time a
rebuild needs to be done.  If we move that into a docker image then only
the local changes need to be rebuilt.

Further refinements could be done.  If the python dependencies that are
brought in from requirements.txt could be moved to an image then nothing
would change between updates as long as dependant versions hadn't
changed.  This would probably be more trouble than it's worth, unless
you're recreating netbox containers 10-20 times a day.
2016-08-17 15:19:56 -04:00
docker Add option to dockerize netbox 2016-06-30 21:43:32 +02:00
docs Fixes #441: Added openssl-devel to list of dependencies 2016-08-10 22:37:51 -04:00
netbox Removed redundant PK list from bulk edit template 2016-08-17 12:04:16 -04:00
scripts Added scripts/docker-build.sh for building docker images in CI 2016-08-15 21:59:01 -04:00
.gitignore Add vi swap files to gitignore 2016-07-02 17:30:12 +02:00
.travis.yml Produce a docker image when there's a new tag 2016-08-15 22:00:34 -04:00
CONTRIBUTING.md Updated CONTRIBUTING to discourage the use of issues for questions/discussion 2016-07-22 12:16:03 -04:00
docker-compose.yml Fixes #246 - Add build directive to docker-compose.yml 2016-07-10 19:00:40 -05:00
Dockerfile Changes to Dockerfile to make the build faster 2016-08-17 15:19:56 -04:00
LICENSE.txt Initial push to public repo 2016-03-01 11:23:03 -05:00
mkdocs.yml Added tenancy page 2016-07-28 09:47:16 -04:00
README.md We have a logo! 2016-08-09 14:57:14 -04:00
requirements.txt Changes to Dockerfile to make the build faster 2016-08-17 15:19:56 -04:00
upgrade.sh Optionally use sudo if not running upgrade.sh as root 2016-07-01 13:21:51 -04:00

NetBox

NetBox is an IP address management (IPAM) and data center infrastructure management (DCIM) tool. Initially conceived by the network engineering team at DigitalOcean, NetBox was developed specifically to address the needs of network and infrastructure engineers.

NetBox runs as a web application atop the Django Python framework with a PostgreSQL database. For a complete list of requirements, see requirements.txt. The code is available on GitHub.

The complete documentation for Netbox can be found at Read the Docs.

Questions? Comments? Please join us on IRC in #netbox on irc.freenode.net!

Build Status

python 2.7
master Build Status
develop Build Status

Screenshots

Screenshot of main page

Screenshot of rack elevation

Screenshot of prefix hierarchy

Installation

Please see the documentation for instructions on installing NetBox.

To upgrade NetBox, please download the latest release and run upgrade.sh.