mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-01 23:04:15 +02:00
9 lines
275 B
Markdown
9 lines
275 B
Markdown
# Administration
|
|
|
|
## Cleanup
|
|
```
|
|
# Cleanup Database
|
|
for db in matrix mautrix_whatsapp_bridge mautrix_telegram_bridge mautrix_signal_bridge mautrix_slack_bridge; do python reset-database-in-central-postgres.py $db; done
|
|
# Cleanup Docker and Volumes
|
|
docker compose down -v
|
|
``` |