Changes for version 0.28.0

Tobias Genannt 2021-01-15 11:23:39 +01:00
parent 00d35d371c
commit 03abad8c70

@ -46,6 +46,15 @@ services:
- 8000:8080
```
From **version 0.28.0** and above the file's content should be this (service `nginx` changed to `netbox`):
```yaml
version: '3.4'
services:
netbox:
ports:
- 8000:8080
```
This file will define that Netbox Docker will always listen on port `8000` when it starts up.
(Without that file it would listen on a random port so that you can start multiple Netbox instances in parallel.)
If you already have something listening on port `8000` feel free to change it.