From 4f667672f28fb214bf350a888ed04406d6c4ab0d Mon Sep 17 00:00:00 2001 From: Joe Francis Date: Tue, 17 Oct 2023 21:37:07 -0500 Subject: [PATCH] Fix typo in README.md Correct command is `docker-compose` not `docker compose` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e472945..255dfd4 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ services: ports: - 8000:8080 EOF -docker compose pull -docker compose up +docker-compose pull +docker-compose up ``` The whole application will be available after a few minutes. @@ -51,7 +51,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 ``` If you need to restart Netbox from an empty database often, you can also set the `SUPERUSER_*` variables in your `docker-compose.override.yml` as shown in the example.