From 58603d79bc3c268b60befc30de556ca7dadd71fa Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 9 Nov 2024 13:53:17 +0900 Subject: [PATCH] Update docs/installing.md: replace the just recipe with the ansible-playbook command The concept of the just recipe is explained at the bottom of the page, therefore it should be safe to avoid using it here and prefer the ansible-playbook command like above. Signed-off-by: Suguru Hirahara --- docs/installing.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/installing.md b/docs/installing.md index 9b0d79c9f..f67b9ce01 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -78,7 +78,11 @@ To configure Service Discovery in this way, add the following configuration to y matrix_static_files_container_labels_base_domain_enabled: true ``` -After configuring the playbook, run the [installation](installing.md) command: `just install-all` or `just setup-all` +After configuring the playbook, run the [installation](installing.md) command: + +```sh +ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start +``` ## Things to do next