From c674b681582d8967005ed6acf76e50b71fd74aed Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Tue, 5 Dec 2023 09:00:41 -0800 Subject: [PATCH] adjust table layout The wide command reference caused the whole table around the `
` to have a scroll bar, which was confusing. --- guide/install.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/guide/install.md b/guide/install.md index 0d40c7ad..d4e66a42 100644 --- a/guide/install.md +++ b/guide/install.md @@ -99,11 +99,21 @@ services: Command reference: -| | Moonfire directly installed on the host | Moonfire with docker compose | -|-------------------------------|--------------------------------------------------------|------------------------------| -| Initialize the database | `sudo -u moonfire-nvr moonfire-nvr init` | `sudo docker compose run --rm moonfire-nvr init` | -| Run interactive configuration | `sudo -u moonfire-nvr moonfire-nvr config 2>debug-log` | `sudo docker compose run --rm moonfire-nvr config 2>debug-log` | -| Enable and start the server | `sudo systemctl enable --now moonfire-nvr` | `sudo docker compose up --detach moonfire-nvr` | + + + + + + + + + + + + + + +
Initialize the database
Hostsudo -u moonfire-nvr moonfire-nvr init
Dockersudo docker compose run --rm moonfire-nvr init
Run interactive configuration
Hostsudo -u moonfire-nvr moonfire-nvr config 2>debug-log
Dockersudo docker compose run --rm moonfire-nvr config 2>debug-log
Enable and start the server
Hostsudo systemctl enable --now moonfire-nvr
Dockersudo docker compose up --detach moonfire-nvr