#!/bin/bash # Script to rebuild aitherboard container without cache # Usage: ./docker-rebuild.sh echo "Rebuilding aitherboard container (no cache)..." docker-compose build --no-cache aitherboard echo "Starting containers..." docker-compose up -d echo "Done! aitherboard has been rebuilt and restarted."