From e8f3171216f5e0270bdece4181866ac813b43666 Mon Sep 17 00:00:00 2001 From: dienteperro Date: Sat, 17 Jun 2023 16:14:09 -0400 Subject: [PATCH] Missing hyphen in docker-compose command; Restart of compose-managed containers can be done just with 'start' instead of 'up'. --- Getting-Started.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index 58b4275..47ce3ff 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -58,10 +58,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. @@ -74,7 +74,7 @@ You should see the NetBox homepage. To create the first admin user run this command: ```bash -docker compose exec netbox /opt/netbox/netbox/manage.py createsuperuser +docker-compose exec netbox /opt/netbox/netbox/manage.py createsuperuser ``` [netbox-docker]: https://github.com/netbox-community/netbox-docker @@ -86,10 +86,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 start ``` 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!