From 80199ee261716a7dd989251e1dbe14a6e75a0f17 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Wed, 19 Feb 2025 14:33:08 +0100 Subject: [PATCH] Updated Getting Started (markdown) --- Getting-Started.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index 9ff13a3..aabe73e 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -36,18 +36,9 @@ cd netbox-docker ``` Now you need to create a new file which defines the port under which NetBox will be available. -The file name must be `docker-compose.override.yml` and its content should be as follows: - -```yaml -version: '3.4' -services: - netbox: - ports: - - 8000:8080 -``` +The file name must be `docker-compose.override.yml`. As a starting point you can use our example file named `docker-compose.override.yml.example`. 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. To get NetBox Docker up-and-running, here are the two final steps: