You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
304 B
9 lines
304 B
#!/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."
|
|
|