deploy without node
Some checks failed
ci / site (push) Has been cancelled
publish-image / publish (push) Has been cancelled

This commit is contained in:
2026-02-10 02:52:14 -05:00
parent 03df2b3a6c
commit 3b0b97f139
25 changed files with 312 additions and 51 deletions

View File

@@ -3,12 +3,10 @@ set -eu
cd "$(dirname "$0")/.."
echo "[refresh] fetching content"
(cd site && npm ci && npm run fetch-content)
echo "[refresh] pulling latest image"
docker compose -f deploy/docker-compose.prod.yml pull
echo "[refresh] building + restarting container"
docker compose build web
docker compose up -d --force-recreate web
echo "[refresh] restarting service (no build)"
docker compose -f deploy/docker-compose.prod.yml up -d --no-build
echo "[refresh] done"