Files
webhook-everything/scripts/deploy.sh
Samuel Pua b3644f05e6
All checks were successful
Webhook-Everything/Webhook-Everything/pipeline/head This commit looks good
Feat(telegram): Added new controller to handle help and show
2022-09-10 00:40:10 +08:00

6 lines
407 B
Bash

#!/bin/bash
echo $ATHENA_DEPLOYMENT_SSH_KEY | base64 -d > /tmp/ssh-key
chmod 600 /tmp/ssh-key
rsync -v -e "ssh -o StrictHostKeyChecking=no -i /tmp/ssh-key -p 777" -a --exclude="_docker_mnt/_postgres_data" --delete . samuel@athena.gaia:~/webhook-everything || true
ssh -p 777 -o StrictHostKeyChecking=no -i /tmp/ssh-key samuel@athena.gaia "cd /home/samuel/webhook-everything && docker-compose up --build -d"