deploy to prod and testing, sync db

This commit is contained in:
simon 2022-09-19 20:59:26 +07:00
parent 4d0f00d854
commit 9285a1ea32
Signed by: simon
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 60 additions and 12 deletions

View File

@ -1,20 +1,68 @@
#!/bin/bash
# upload project to vps2
host="vps2"
remote_host="vps2"
local_host="lpb-air.local"
rsync --progress -a docker-compose.yml "$host":docker/
rsync --progress -a env "$host":docker/
rsync --progress -a --delete-after helper_scripts "$host":docker/
rsync --progress -a --delete-after nginx "$host":docker/
rsync --progress -a --delete-after \
--exclude config.json.sample \
--exclude __pycache__ \
--exclude static/dyn \
web "$host":docker/
# rebuild production
function sync_docker {
rsync --progress --ignore-existing -a docker-compose_prod.yml "$remote_host":docker/docker-compose.yml
rsync --progress -a env "$remote_host":docker/
rsync --progress -a --delete-after helper_scripts "$remote_host":docker/
rsync --progress -a --delete-after nginx "$remote_host":docker/
rsync --progress -a --delete-after \
--exclude config.json.sample \
--exclude __pycache__ \
--exclude static/dyn \
web "$remote_host":docker/
ssh "$host" 'docker build -t bbilly1/lpb-air:latest docker/web'
ssh "$host" 'docker-compose -f docker/docker-compose.yml up -d'
ssh "$remote_host" 'docker build -t bbilly1/lpb-air:latest docker/web'
ssh "$remote_host" 'docker-compose -f docker/docker-compose.yml up -d'
}
# rebuild testing
function sync_test {
ssh "$local_host" "mkdir -p docker"
rsync --progress --ignore-existing -a docker-compose_testing.yml "$local_host":docker/docker-compose.yml
rsync --progress -a env "$local_host":docker/
rsync --progress -a --delete-after helper_scripts "$local_host":docker/
rsync --progress -a --delete-after nginx "$local_host":docker/
rsync --progress -a --delete-after \
--exclude config.json.sample \
--exclude __pycache__ \
--exclude static/dyn \
web "$local_host":docker/
ssh "$local_host" 'docker build -t bbilly1/lpb-air:latest docker/web'
ssh "$local_host" 'docker compose -f docker/docker-compose.yml up -d'
}
# sync prod db to testing
function sync_db {
newest_backup=$(ssh $remote_host 'find backup -type f -name "pg_*.gz" | sort | tail -n 1')
rsync --progress -e ssh $remote_host:"$newest_backup" .
rsync --progress -e ssh "$(basename "$newest_backup")" $local_host:backup/backup.gz
ssh $local_host "gzip -d backup/backup.gz"
ssh $local_host "docker exec -i postgres psql -U aqi -d aqi < backup/backup"
ssh $local_host "docker compose -f docker/docker-compose.yml restart"
}
if [[ $1 == "test" ]]; then
sync_test "$2"
elif [[ $1 == "docker" ]]; then
sync_docker
elif [[ $1 == "db" ]]; then
sync_db
else
echo "valid options are: test | docker | db"
fi
##
exit 0