2017-04-19 16:48:21 +02:00
|
|
|
# netbox-docker
|
|
|
|
|
2017-09-29 11:07:52 +02:00
|
|
|
[![Build Status](https://travis-ci.org/ninech/netbox-docker.svg?branch=master)](https://travis-ci.org/ninech/netbox-docker)
|
|
|
|
|
2017-09-11 15:30:52 +02:00
|
|
|
This repository houses the components needed to build NetBox as a Docker container.
|
|
|
|
Images built using this code are released to [Docker Hub](https://hub.docker.com/r/ninech/netbox) every night.
|
2017-04-19 16:48:21 +02:00
|
|
|
|
|
|
|
## Quickstart
|
|
|
|
|
|
|
|
To get NetBox up and running:
|
|
|
|
|
|
|
|
```
|
2017-09-11 15:40:11 +02:00
|
|
|
$ git clone -b master https://github.com/ninech/netbox-docker.git
|
2017-09-11 15:30:52 +02:00
|
|
|
$ cd netbox-docker
|
2017-11-29 15:13:55 +01:00
|
|
|
$ docker-compose pull
|
2017-09-11 15:30:52 +02:00
|
|
|
$ docker-compose up -d
|
2017-04-19 16:48:21 +02:00
|
|
|
```
|
|
|
|
|
2017-09-11 15:30:52 +02:00
|
|
|
The application will be available after a few minutes.
|
|
|
|
Use `docker-compose port nginx 80` to find out where to connect to.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ echo "http://$(docker-compose port nginx 80)/"
|
|
|
|
http://0.0.0.0:32768/
|
|
|
|
|
|
|
|
# Open netbox in your default browser on macOS:
|
|
|
|
$ open "http://$(docker-compose port nginx 80)/"
|
|
|
|
|
|
|
|
# Open netbox in your default browser on (most) linuxes:
|
|
|
|
$ xdg-open "http://$(docker-compose port nginx 80)/" &>/dev/null &
|
|
|
|
```
|
2017-04-19 16:48:21 +02:00
|
|
|
|
2017-11-29 15:13:55 +01:00
|
|
|
Alternatively, use something like [Reception](https://github.com/ninech/reception) to
|
|
|
|
connect to _docker-compose_ projects.
|
|
|
|
|
2017-04-19 16:48:21 +02:00
|
|
|
Default credentials:
|
|
|
|
|
|
|
|
* Username: **admin**
|
|
|
|
* Password: **admin**
|
2017-11-29 15:13:55 +01:00
|
|
|
* API Token: **0123456789abcdef0123456789abcdef01234567**
|
2017-04-19 16:48:21 +02:00
|
|
|
|
2017-10-16 13:09:17 +02:00
|
|
|
## Dependencies
|
|
|
|
|
2017-10-16 13:13:12 +02:00
|
|
|
This project relies only on *Docker* and *docker-compose* meeting this requirements:
|
2017-10-16 13:09:17 +02:00
|
|
|
|
|
|
|
* The *Docker version* must be at least `1.13.0`.
|
|
|
|
* The *docker-compose version* must be at least `1.10.0`.
|
|
|
|
|
|
|
|
To ensure this, compare the output of `docker --version` and `docker-compose --version` with the requirements above.
|
|
|
|
|
2017-04-19 16:48:21 +02:00
|
|
|
## Configuration
|
|
|
|
|
2017-09-11 15:30:52 +02:00
|
|
|
You can configure the app using environment variables. These are defined in `netbox.env`.
|
|
|
|
|
2017-10-16 13:33:12 +02:00
|
|
|
## Version
|
|
|
|
|
|
|
|
The `docker-compose.yml` file is prepared to run a specific version of Netbox.
|
|
|
|
To use this feature, set the environment-variable `VERSION` before launching `docker-compose`, as shown below.
|
|
|
|
`VERSION` may be set to the name of
|
|
|
|
[any tag of the `ninech/netbox` Docker image](https://hub.docker.com/r/ninech/netbox/tags/).
|
|
|
|
|
|
|
|
```
|
2017-11-29 15:13:55 +01:00
|
|
|
$ export VERSION=v2.2.6
|
2017-10-16 13:33:12 +02:00
|
|
|
$ docker-compose pull netbox
|
|
|
|
$ docker-compose up -d
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also build a specific version of the Netbox image. This time, `VERSION` indicates any valid
|
|
|
|
[Git Reference](https://git-scm.com/book/en/v2/Git-Internals-Git-References) declared on
|
|
|
|
[the Netbox Github repository](https://github.com/digitalocean/netbox/releases).
|
|
|
|
Most commonly you will specify a tag name or a branch name.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ export VERSION=develop
|
|
|
|
$ docker-compose build --no-cache netbox
|
|
|
|
$ docker-compose up -d
|
|
|
|
```
|
|
|
|
|
|
|
|
Hint: If you're building a specific version by tag name, the `--no-cache` argument is not strictly necessary.
|
|
|
|
This can increase the build speed if you're just adjusting the config, for example.
|
|
|
|
|
2017-09-11 15:30:52 +02:00
|
|
|
## Rebuilding & Publishing images
|
|
|
|
|
|
|
|
`./build.sh` is used to rebuild the Docker image:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ ./build.sh --help
|
|
|
|
Usage: ./build.sh <branch> [--push]
|
|
|
|
branch The branch or tag to build. Required.
|
|
|
|
--push Pushes built Docker image to docker hub.
|
|
|
|
|
|
|
|
You can use the following ENV variables to customize the build:
|
|
|
|
BRANCH The branch to build.
|
|
|
|
Also used for tagging the image.
|
|
|
|
DOCKER_REPO The Docker registry (i.e. hub.docker.com/r/DOCKER_REPO/netbox)
|
|
|
|
Also used for tagging the image.
|
|
|
|
Default: ninech
|
|
|
|
SRC_REPO Which fork of netbox to use (i.e. github.com/<SRC_REPO>/netbox).
|
|
|
|
Default: digitalocean
|
|
|
|
URL Where to fetch the package from.
|
|
|
|
Must be a tar.gz file of the source code.
|
|
|
|
Default: https://github.com/${SRC_REPO}/netbox/archive/$BRANCH.tar.gz
|
|
|
|
```
|
2017-08-30 11:10:55 +02:00
|
|
|
|
|
|
|
## Tests
|
|
|
|
|
|
|
|
To run the bundled test, use the `docker-compose.test.yml` file.
|
|
|
|
|
|
|
|
```
|
2017-09-11 15:30:52 +02:00
|
|
|
$ docker-compose -f docker-compose.test.yml run --rm app
|
2017-08-30 11:10:55 +02:00
|
|
|
```
|
2017-09-11 15:30:52 +02:00
|
|
|
|
|
|
|
## About
|
|
|
|
|
2017-10-09 22:05:46 +02:00
|
|
|
This repository is currently maintained and funded by [nine](https://nine.ch).
|
2017-09-11 15:30:52 +02:00
|
|
|
|
2017-10-09 22:05:46 +02:00
|
|
|
[![logo of the company 'nine'](https://logo.apps.at-nine.ch/Dmqied_eSaoBMQwk3vVgn4UIgDo=/trim/500x0/logo_claim.png)](https://www.nine.ch)
|