modified backup jobs and added README

This commit is contained in:
guntherweissenbaeck 2023-07-30 12:48:59 +00:00
parent 8b4cfb5cf7
commit 842101a3ea
3 changed files with 14 additions and 7 deletions

7
bin/README.md Normal file
View file

@ -0,0 +1,7 @@
# Backup with CRON
To execute a Backup Job every Night at 01:00 am you'll have to add a crontab-job like this:
```bash
0 1 * * * /srv/docker/django_fbf/bin/backupDB >/dev/null 2>&1
```