+ Наведен порядок в файлах проекта + Наведен порядок в документации + Настроены скрипты установки, развертки и так далее, расширен MakeFile
14 lines
272 B
Bash
Executable File
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"
|