From 5b003570828faf1cb9cfa4f43aaf7896fdf98643 Mon Sep 17 00:00:00 2001 From: Nick Fox Date: Tue, 1 Jan 2019 01:36:25 +0000 Subject: [PATCH] Created Logging (markdown) --- Logging.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Logging.md diff --git a/Logging.md b/Logging.md new file mode 100644 index 0000000..437d357 --- /dev/null +++ b/Logging.md @@ -0,0 +1,10 @@ +Logging to a file is supported as of 1.5.0. You can specify the path to the log file with the `LOG_FILE` environment variable: + +```sh +docker run -d --name bitwarden \ +... + -e LOG_FILE=/data/bitwarden.log \ +... +``` + +Note that if you're using the docker image, you'll most likely want to use a file path that is mounted from the host OS (such as the data folder). \ No newline at end of file