rename script folder

This commit is contained in:
2026-01-25 15:44:39 +09:00
parent b815c37064
commit a8b661b304
3 changed files with 0 additions and 0 deletions

21
scripts/deploy-nas.sh Normal file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT="/volume1/docker/webpage"
cd "$ROOT"
echo "[1/5] git fetch + pull"
git fetch --all --prune
git pull --ff-only
echo "[2/5] docker compose build"
docker compose build --pull
echo "[3/5] docker compose up"
docker compose up -d
echo "[4/5] status"
docker compose ps
echo "[5/5] done"