We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3500593 commit 5c713b2Copy full SHA for 5c713b2
1 file changed
xmpp2/README.md
@@ -22,3 +22,17 @@ How to Deploy
22
If on Windows, feel free to use scripts `ansible-vault.ps1`, `ansible-playbook.ps1` as a substitute to use Ansible from WSL.
23
24
If running deployment for the first time, then run `ansible-playbook --ask-vault-pass auth.yml` to set up the user accounts and access properly.
25
+
26
+Standard Operating Procedures
27
+-----------------------------
28
29
+### Dump Database Backup for LogList
30
+```console
31
+$ docker exec -i loglist.postgresql pg_dump -d loglist -U postgres -F custom --no-acl > loglist.dmp
32
+```
33
34
+### Restore Database Backup for LogList
35
36
+$ docker cp loglist.dmp loglist.postgresql:/loglist.dmp
37
+$ docker exec -i loglist.postgresql pg_restore -d loglist -U loglist --clean -1 /loglist.dmp
38
0 commit comments