From 9285a1ea326de2cc95d69ac75273e3ff5575b12e Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 19 Sep 2022 20:59:26 +0700 Subject: [PATCH] deploy to prod and testing, sync db --- deploy.sh | 72 +++++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 60 insertions(+), 12 deletions(-) diff --git a/deploy.sh b/deploy.sh index cc670a2..f7cc432 100755 --- a/deploy.sh +++ b/deploy.sh @@ -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