diff --git a/Troubleshooting.md b/Troubleshooting.md index 9db90c7..ecf27ff 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -69,8 +69,8 @@ docker compose exec -T postgres sh -c 'pg_dump -cU $POSTGRES_USER $POSTGRES_DB' Restore that database: ```bash -# Stop all NetBox instances that access the db -docker compose stop netbox netbox-worker netbox-housekeeping +# Stop all NetBox instances that access the db +docker compose stop netbox netbox-worker # additionally include "netbox-housekeeping" for older version of netbox-docker # Restore the DB dump gunzip -c db_dump.sql.gz | docker compose exec -T postgres sh -c 'psql -U $POSTGRES_USER $POSTGRES_DB'