Skip to content

Instantly share code, notes, and snippets.

@Jeve-Stobs
Last active February 13, 2022 00:35
Show Gist options
  • Save Jeve-Stobs/70a126c47a2f961bf5b1c8d8d85e402f to your computer and use it in GitHub Desktop.
Save Jeve-Stobs/70a126c47a2f961bf5b1c8d8d85e402f to your computer and use it in GitHub Desktop.
Backup with mongodump & discord webhook
url="https://discord.com/api/webhooks/#/#"
mongodump mongodb://USERNAME:PASSWORD@DB_URL:DB_PORT/DATABASE?authSource=admin&w=1 --db=DATABASE
zip -r backup.zip dump/
curl \
-H "Content-Type: multipart/form-data" \
-F "[email protected];type=application/zip" \
$url
# crontab -e
# 0 */2 * * * path/backup.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment