From 3846070818792ebc685a7fc2fe7b13831a81db9f Mon Sep 17 00:00:00 2001 From: constantprojects Date: Tue, 24 Feb 2026 08:59:55 -0700 Subject: [PATCH] Add cd ~/websitebox to docker compose command in setup summary Users copying the command from the summary were running it from their home directory, causing 'no configuration file provided'. Co-Authored-By: Claude Opus 4.6 --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 2aba6a0..afb1073 100755 --- a/setup.sh +++ b/setup.sh @@ -289,7 +289,7 @@ printf " ${GREEN}✓ Success looks like:${RESET} ${BOLD}${SERVER_IP}${RESET} printf " ${RED}✗ Not ready yet:${RESET} ${DIM}(blank output or a different IP — wait a few minutes and try again)${RESET}\n\n" printf " ${BLUE}3.${RESET} ${BOLD}Launch your website${RESET}\n" printf " Once DNS is working, copy this command into the server terminal:\n\n" -printf " ${CYAN}docker compose up -d${RESET}\n\n" +printf " ${CYAN}cd ~/websitebox && docker compose up -d${RESET}\n\n" printf " ${BLUE}4.${RESET} ${BOLD}Visit your site${RESET}\n" printf " Your website: ${CYAN}https://${DOMAIN}${RESET}\n" printf " Admin login: ${CYAN}https://${DOMAIN}/wp-admin${RESET}\n"