diff --git a/Getting-Started.md b/Getting-Started.md index 4cc84c9..1f2f1ca 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -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.