init docker cofig,

This commit is contained in:
louiscklaw
2025-05-11 07:59:35 +08:00
parent 9739583f43
commit 6e576919ab
10 changed files with 372 additions and 0 deletions

19
002_source/scripts/backup.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -ex
# GLOBAL_EXCLUDE="--exclude={'**/.git','**/node_modules','**/.pnpm','**//**'}"
# tar -zcvf _archive/cms/018.tar.gz \
# --exclude "node_modules" \
# --exclude ".next" \
# cms
rsync -avzh \
--exclude ".next" \
--exclude "node_modules" \
--exclude ".pnpm" \
--exclude ".git" \
cms _archive/006_cms_start_categories_edit
echo "done"