From bb43127ab43b45fe7d7446da6446fef84c089f4e Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 31 Jan 2026 07:16:07 -0600 Subject: [PATCH] deploy: use build cache --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index aabf40e..a63bd70 100644 --- a/deploy.sh +++ b/deploy.sh @@ -41,8 +41,8 @@ git -C "$ROOT_DIR" pull echo "Stopping containers..." docker compose -f "$COMPOSE_FILE" down -echo "Building containers (no cache)..." -docker compose -f "$COMPOSE_FILE" build --no-cache +echo "Building containers (using cache)..." +docker compose -f "$COMPOSE_FILE" build echo "Starting containers..." docker compose -f "$COMPOSE_FILE" up -d --force-recreate