35 lines
911 B
Bash
35 lines
911 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
SRC="/repo"
|
|
DST="/runtime" # (= /volume1/docker/webpage 가 마운트된 곳)
|
|
|
|
cd "$SRC"
|
|
|
|
# 레포에서 운영으로 반영할 항목들만 복사/동기화 (필요한 것만 적기)
|
|
# backend, travel-proxy, deployer, nginx, scripts, docker-compose.yml, .env 등
|
|
rsync -a --delete \
|
|
--exclude ".git" \
|
|
--exclude ".releases" \
|
|
"$SRC/backend/" "$DST/backend/"
|
|
rsync -a --delete \
|
|
--exclude ".git" \
|
|
"$SRC/travel-proxy/" "$DST/travel-proxy/"
|
|
rsync -a --delete \
|
|
--exclude ".git" \
|
|
"$SRC/deployer/" "$DST/deployer/"
|
|
rsync -a --delete \
|
|
--exclude ".git" \
|
|
"$SRC/nginx/" "$DST/nginx/"
|
|
rsync -a --delete \
|
|
--exclude ".git" \
|
|
"$SRC/scripts/" "$DST/scripts/"
|
|
|
|
# compose 파일 / env 파일
|
|
rsync -a "$SRC/docker-compose.yml" "$DST/docker-compose.yml"
|
|
if [ -f "$SRC/.env" ]; then
|
|
rsync -a "$SRC/.env" "$DST/.env"
|
|
fi
|
|
|
|
echo "SYNC_OK"
|