From 8c1d4405ad5b258d84efb6932a6713fa5ec149c1 Mon Sep 17 00:00:00 2001 From: Thomas VIAL Date: Wed, 11 Sep 2019 16:49:25 +0200 Subject: [PATCH] Updated FAQ and Tips (markdown) --- FAQ-and-Tips.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/FAQ-and-Tips.md b/FAQ-and-Tips.md index 137cf93..1d476b4 100644 --- a/FAQ-and-Tips.md +++ b/FAQ-and-Tips.md @@ -25,14 +25,16 @@ You should use a [data volume container](https://medium.com/@ramangupta/why-dock Assuming that you use `docker-compose` and a data volume container named `maildata`, you can backup your user mails like this: -```docker run --rm -ti \ +``` +docker run --rm -ti \ -v maildata:/var/mail \ -v mailstate:/var/mail-state \ -v /backup/mail:/backup \ alpine:3.2 \ tar cvzf /backup/mail-`date +%y%m%d-%H%M%S`.tgz /var/mail /var/mail-state -find /backup/mail -type f -mtime +30 -exec rm -f {} \;``` +find /backup/mail -type f -mtime +30 -exec rm -f {} \; +``` ### What about `mail-state` folder? This folder consolidates all data generated by the server itself to persist when you upgrade.