#!/usr/bin/env bash set -euo pipefail # scripts/rebuild_no_cache.sh # Build and restart containers without cache echo "Building containers without cache..." docker compose build --no-cache echo "Bringing up containers..." docker compose up -d echo "Containers are up"