Files
links/scripts/rebuild_no_cache.sh
Andrey K. Choi 2e535513b5 + Приведены все функции приложения в рабочий вид
+ Наведен порядок в файлах проекта
+ Наведен порядок в документации
+ Настроены скрипты установки, развертки и так далее, расширен MakeFile
2025-11-02 06:09:55 +09:00

14 lines
272 B
Bash
Executable File

#!/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"