parent
01b9c2519c
commit
279527d27a
4 changed files with 23 additions and 0 deletions
Binary file not shown.
@ -0,0 +1,3 @@ |
||||
#!/bin/bash -e |
||||
|
||||
rm -f {{ metabase_root_dir }}/backup/* |
@ -0,0 +1,13 @@ |
||||
#!/bin/bash -e |
||||
|
||||
/usr/bin/mysqldump \ |
||||
{% if metabase_db_server not in ['localhost','127.0.0.1'] %} |
||||
--user={{ metabase_db_user | quote }} \ |
||||
--password={{ metabase_db_pass | quote }} \ |
||||
--host={{ metabase_db_server | quote }} \ |
||||
--port={{ metabase_db_port | quote }} \ |
||||
{% endif %} |
||||
--quick --single-transaction \ |
||||
--add-drop-table {{ metabase_db_name | quote }} | zstd -c > {{ metabase_root_dir }}/backup/{{ metabase_db_name }}.sql.zst |
||||
cp {{ metabase_root_dir }}/etc/env {{ metabase_root_dir }}/backup/ |
||||
|
Loading…
Reference in new issue