From 03abad8c70e50cbab9135f8d5486b2d459016639 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Fri, 15 Jan 2021 11:23:39 +0100 Subject: [PATCH] Changes for version 0.28.0 --- Getting-Started.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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.