@@ -43,10 +43,10 @@ Then there is currently one extra tags for each of the above labels:
43
43
44
44
## Quickstart
45
45
46
- To get Netbox up and running:
46
+ To get Netbox up and running in Docker :
47
47
48
48
``` bash
49
- git clone -b master https://github.com/netbox-community/netbox-docker.git
49
+ git clone -b release https://github.com/netbox-community/netbox-docker.git
50
50
cd netbox-docker
51
51
docker-compose pull
52
52
docker-compose up -d
@@ -68,22 +68,25 @@ $ xdg-open "http://$(docker-compose port nginx 8080)/" &>/dev/null &
68
68
69
69
Alternatively, use something like [ Reception] [ docker-reception ] to connect to _ docker-compose_ projects.
70
70
71
- Default credentials:
71
+ The default credentials are :
72
72
73
73
* Username: ** admin**
74
74
* Password: ** admin**
75
75
* API Token: ** 0123456789abcdef0123456789abcdef01234567**
76
76
77
+ There is a more complete [ Getting Started guide on our Wiki] [ wiki-getting-started ] .
78
+
79
+ [ wiki-getting-started ] : https://github.com/netbox-community/netbox-docker/wiki/Getting-Started
77
80
[ docker-reception ] : https://github.com/nxt-engineering/reception
78
81
79
82
## Dependencies
80
83
81
- This project relies only on * Docker* and * docker-compose* meeting this requirements:
84
+ This project relies only on * Docker* and * docker-compose* meeting these requirements:
82
85
83
86
* The * Docker version* must be at least ` 17.05 ` .
84
87
* The * docker-compose version* must be at least ` 1.17.0 ` .
85
88
86
- To ensure this, compare the output of ` docker --version ` and ` docker-compose --version ` with the requirements above .
89
+ To check the version installed on your system run ` docker --version ` and ` docker-compose --version ` .
87
90
88
91
## Documentation
89
92
@@ -100,7 +103,7 @@ To use this feature, set the environment-variable `VERSION` before launching `do
100
103
[ any tag of the ` netboxcommunity/netbox ` Docker image on Docker Hub] [ netbox-dockerhub ] .
101
104
102
105
``` bash
103
- export VERSION=v2.6.7
106
+ export VERSION=v2.7.1
104
107
docker-compose pull netbox
105
108
docker-compose up -d
106
109
```
@@ -109,7 +112,7 @@ You can also build a specific version of the Netbox Docker image yourself.
109
112
` VERSION ` can be any valid [ git ref] [ git-ref ] in that case.
110
113
111
114
``` bash
112
- export VERSION=v2.6.7
115
+ export VERSION=v2.7.1
113
116
./build.sh $VERSION
114
117
docker-compose up -d
115
118
```
@@ -123,7 +126,7 @@ From time to time it might become necessary to re-engineer the structure of this
123
126
Things like the ` docker-compose.yml ` file or your Kubernetes or OpenShift configurations have to be adjusted as a consequence.
124
127
Since November 2019 each image built from this repo contains a ` org.opencontainers.image.version ` label.
125
128
(The images contained labels since April 2018, although in November 2019 the labels' names changed.)
126
- You can check the label of your local image by running ` docker inspect netboxcommunity/netbox:v2.6.7 --format "{{json .ContainerConfig.Labels}}" ` .
129
+ You can check the label of your local image by running ` docker inspect netboxcommunity/netbox:v2.7.1 --format "{{json .ContainerConfig.Labels}}" ` .
127
130
128
131
Please read [ the release notes] [ releases ] carefully when updating to a new image version.
129
132
0 commit comments