From 14cb04e393e3de6b143ffbeef40d903a62053cc0 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Sun, 12 Jun 2016 21:21:13 +0200 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/FAQ.md b/FAQ.md index 9f8c80f..033f220 100644 --- a/FAQ.md +++ b/FAQ.md @@ -54,15 +54,18 @@ db.users.find() ``` ## Show mails with a Docker image, without mail configuration -When you did **NOT** setup the `MAIL_URL` environment variable in Wekan, the mail message will be 'sent' to the terminal output instead of sending an actual e-mail. If you are using Docker images, the terminal +When you did **NOT** setup the `MAIL_URL` environment variable in Wekan, the mail message will be 'sent' to the terminal output instead of sending an actual e-mail. If you are using Docker images, list the containers via: ```sh -$ docker ps +docker ps ``` + Then attach to the process: -``` -$ docker attach --sig-proxy=false + +```sh +docker attach --sig-proxy=false `` + With the `--sig-proxy=false` flag, you can close the attached shell again via **ctl + x** without exiting the Wekan process. Via the web-interface press the '_forgot your password?_' link and trigger a reset mail. And watch the terminal output for the e-mail.