From 3645ecf8cff92e7341cbd2fedb5966ab68290847 2024-02-22 09:33:21 From: RhodeCode Admin Date: 2024-02-22 09:33:21 Subject: [PATCH] fix(getting-started): added more explicit info how to start all using single command --- diff --git a/scripts/rcstack/rcstack b/scripts/rcstack/rcstack index 7c0e491..dc751d1 100755 --- a/scripts/rcstack/rcstack +++ b/scripts/rcstack/rcstack @@ -7168,6 +7168,8 @@ initialize() { echo "Check and adjust those settings if needed." echo "" echo "$(bold Run the stacks in following order):" + echo "$(bold [NOTE]): Instead of running stacks independent, one can use shorthand to run all stacks in order (detached with -d)" + echo "./$RC_SCRIPT_NAME stack all up -d" echo "" echo "$(green_bold 1\) router [Mandatory]): run the edge router to control stack traffic / domain access and optionally SSL termination" echo "IMPORTANT: router binds to some common ports 80, 443, SSH (9022), Loki (3100) if those are not available, please adjust them" @@ -7194,9 +7196,6 @@ initialize() { echo "$(bold [Status]): check services run status, ports etc.." echo "./$RC_SCRIPT_NAME status -v --configs" echo "" - echo "$(bold [All]): shorthand to run all stacks (detached with -d)" - echo "./$RC_SCRIPT_NAME stack all up -d" - echo "" echo "$(bold [Logs]): check service logs" echo "./$RC_SCRIPT_NAME stack [STACK_NAME] logs" }