From 1ac732d3700e5a49dab2454b622c8be83cc3a1ac Mon Sep 17 00:00:00 2001 From: anthonyp-cns <75483753+anthonyp-cns@users.noreply.github.com> Date: Tue, 24 Jan 2023 11:18:01 -0500 Subject: [PATCH] docker-compose may not properly support the depends-on keyword leading to errors, while the newer docker compose subcommand does support it and is using the more up to date syntax/docker built in --- Getting-Started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index 7002286..45e4255 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -67,10 +67,10 @@ To get NetBox Docker up-and-running, here are the two final steps: ```bash # (4) -docker-compose pull +docker compose pull # (5) -docker-compose up +docker compose up ``` You will see a lot of output on your screen. @@ -95,10 +95,10 @@ If you want to just stop NetBox to continue work later on, use the following com ```bash # Stop all the containers -docker-compose stop +docker compose stop # Start the containers again -docker-compose up +docker compose up ``` If you want to stop NetBox and clean up any resources it allocated (database, files, etc.), use the following command. **Attention:** It will remove any data you have entered in NetBox!