Add --build to websitebox up, comprehensive guide.md polish
- websitebox up now includes --build flag to always rebuild images, fixing Docker cache serving stale containers after code updates - setup.sh launch command updated to source ~/.bashrc first - guide.md: added step roadmap table with time estimates - guide.md: added time estimates to all step headers - guide.md: updated Launch step to use websitebox shortcut with source ~/.bashrc, added command reference table - guide.md: updated all troubleshooting commands to use websitebox shortcut instead of cd + docker compose - guide.md: added 'websitebox: command not found' troubleshooting - guide.md: updated setup wizard terminal example to match current colored output format - guide.md: added container build step to launch explanation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -258,7 +258,7 @@ if ! grep -qF 'websitebox()' "$SHELL_RC" 2>/dev/null; then
|
||||
websitebox() {
|
||||
cd ~/websitebox || return
|
||||
case "$1" in
|
||||
up) shift; docker compose up -d "$@" ;;
|
||||
up) shift; docker compose up -d --build "$@" ;;
|
||||
logs) shift; docker compose logs -f "$@" ;;
|
||||
*) docker compose "$@" ;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user